Skip to content

Commit

Permalink
Merge pull request #124 from CloudHealth/add-cur-parameter-to-aws-acc…
Browse files Browse the repository at this point in the history
…ount-api

Adding parameter for CUR specification for AWS Account setup
  • Loading branch information
HumanistSerif authored Jun 6, 2019
2 parents 29127ff + fdcfa39 commit ed6d210
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
22 changes: 22 additions & 0 deletions _account/aws-account-add.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ parameters:
- name: bucket
required: yes
content: Name of S3 bucket containing the DBR
- name: cost_and_usage_report
required: no
content: JSON field that specifies the location of the AWS Cost and Usage Report (CUR).
sub-fields:
- name: bucket
required: yes
content: Name of S3 bucket containing the CUR
- name: path
required: no
content: The path to the CUR report, including the prefix
- name: cloudtrail
required: no
content: JSON field that specifies whether CloudHealth should collect CloudTrail Trails and the location of Trail files.
Expand Down Expand Up @@ -97,6 +107,10 @@ right_code_blocks:
"billing": {
"bucket": "my-billing-bucket"
},
"cost_and_usage_report" : {
"bucket": "cur-bucket",
"path": "cur/path/api"
},
"cloudtrail": {
"enabled": true,
"bucket": "my-cloudtrail-bucket"
Expand Down Expand Up @@ -133,6 +147,10 @@ right_code_blocks:
"bucket": "my-billing-bucket",
"is_consolidated": false
},
"cost_and_usage_report" : {
"bucket": "cur-bucket",
"path": "cur/path/api"
},
"cloudtrail": {
"enabled": true,
"bucket": "my-cloudtrail-bucket"
Expand Down Expand Up @@ -171,6 +189,10 @@ right_code_blocks:
"billing": {
"bucket": "my-billing-bucket"
},
"cost_and_usage_report" : {
"bucket": "cur-bucket",
"path": "cur/path/api"
},
"cloudtrail": {
"enabled": true,
"bucket": "my-cloudtrail-bucket"
Expand Down
14 changes: 12 additions & 2 deletions _account/aws-account-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,21 @@ parameters:
content: External ID generated by CloudHealth
- name: billing
required: no
content: JSON field that specifies the location of the AWS Detailed Billing Record (DBR) or the AWS Cost and Usage Report (CUR).
content: JSON field that specifies the location of the AWS Detailed Billing Record (DBR)
sub-fields:
- name: bucket
required: yes
content: Name of S3 bucket containing the DBR and CUR
content: Name of S3 bucket containing the DBR
- name: cost_and_usage_report
required: no
content: JSON field that specifies the location of the AWS Cost and Usage Report (CUR).
sub-fields:
- name: bucket
required: yes
content: Name of S3 bucket containing the CUR
- name: path
required: no
content: The path to the CUR report, including the prefix
- name: cloudtrail
required: no
content: JSON field that specifies whether CloudHealth should collect CloudTrail Trails and the location of Trail files.
Expand Down

0 comments on commit ed6d210

Please sign in to comment.