Skip to content

Commit ac94027

Browse files
committed
Switch ordering of configuration examples in cost report and optimization tables
1 parent 87e38a8 commit ac94027

File tree

3 files changed

+50
-54
lines changed
  • docs/tables

3 files changed

+50
-54
lines changed

docs/tables/aws_cost_and_usage_focus/index.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -129,37 +129,37 @@ order by
129129

130130
## Example Configurations
131131

132-
### Collect for a specific export
132+
### Collect reports from an S3 bucket
133133

134-
For a specific export (`my-focus-export` in this example), collect Cost and Usage FOCUS reports.
134+
Collect Cost and Usage FOCUS reports stored in an S3 bucket that use the [default log file name format](https://docs.aws.amazon.com/cur/latest/userguide/dataexports-export-delivery.html#export-summary).
135+
136+
**Note**: We only recommend using the default log file name format if the bucket and prefix combination contains Cost and Usage FOCUS reports. If other reports, like the Cost and Usage Report 2.0, are stored in the same S3 bucket with the same prefix, Tailpipe will attempt to collect from these too, resulting in errors.
135137

136138
```hcl
137139
connection "aws" "billing_account" {
138140
profile = "my-billing-account"
139141
}
140142
141-
partition "aws_cost_and_usage_focus" "specific_cur_focus" {
142-
source "aws_s3_bucket" {
143-
connection = connection.aws.billing_account
144-
bucket = "aws-cur-org-bucket"
145-
prefix = "my/prefix/"
146-
file_layout = "my-focus-export/data/%{DATA:partition}/(?:%{TIMESTAMP_ISO8601:timestamp}-%{UUID:execution_id}/)?%{DATA:filename}.csv.gz"
143+
partition "aws_cost_and_usage_focus" "my_cur_focus" {
144+
source "aws_s3_bucket" {
145+
connection = connection.aws.billing_account
146+
bucket = "aws-cur-billing-bucket"
147+
prefix = "my/prefix/"
147148
}
148149
}
149150
```
150151

151-
### Collect reports from an S3 bucket
152-
153-
Collect Cost and Usage FOCUS reports stored in an S3 bucket that use the [default log file name format](https://docs.aws.amazon.com/cur/latest/userguide/dataexports-export-delivery.html#export-summary).
152+
### Collect for a specific export
154153

155-
**Note**: We only recommend using the default log file name format if the bucket and prefix combination contains Cost and Usage FOCUS reports. If other reports, like the Cost and Usage Report 2.0, are stored in the same S3 bucket with the same prefix, Tailpipe will attempt to collect from these too, resulting in errors.
154+
For a specific export (`my-focus-export` in this example), collect Cost and Usage FOCUS reports.
156155

157156
```hcl
158-
partition "aws_cost_and_usage_focus" "my_cur_focus" {
159-
source "aws_s3_bucket" {
160-
connection = connection.aws.billing_account
161-
bucket = "aws-cur-billing-bucket"
162-
prefix = "my/prefix/"
157+
partition "aws_cost_and_usage_focus" "specific_cur_focus" {
158+
source "aws_s3_bucket" {
159+
connection = connection.aws.billing_account
160+
bucket = "aws-cur-org-bucket"
161+
prefix = "my/prefix/"
162+
file_layout = "my-focus-export/data/%{DATA:partition}/(?:%{TIMESTAMP_ISO8601:timestamp}-%{UUID:execution_id}/)?%{DATA:filename}.csv.gz"
163163
}
164164
}
165165
```

docs/tables/aws_cost_and_usage_report/index.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,31 @@ order by
133133

134134
## Example Configurations
135135

136-
### Collect for a specific CUR 2.0 export
136+
### Collect reports from an S3 bucket
137137

138-
For a specific export (`my-cur-2-0-export` in this example), collect Cost and Usage 2.0 reports.
138+
Collect Cost and Usage reports stored in an S3 bucket that use the [default log file name format](https://docs.aws.amazon.com/cur/latest/userguide/dataexports-export-delivery.html#export-summary).
139+
140+
**Note**: We only recommend using the default log file name format if the bucket and prefix combination contains Cost and Usage reports. If other reports, like the Cost and Usage FOCUS report, are stored in the same S3 bucket with the same prefix, Tailpipe will attempt to collect from these too, resulting in errors.
139141

140142
```hcl
141143
connection "aws" "billing_account" {
142144
profile = "my-billing-account"
143145
}
144146
147+
partition "aws_cost_and_usage_report" "my_cur" {
148+
source "aws_s3_bucket" {
149+
connection = connection.aws.billing_account
150+
bucket = "aws-cur-billing-bucket"
151+
prefix = "my/prefix/"
152+
}
153+
}
154+
```
155+
156+
### Collect for a specific CUR 2.0 export
157+
158+
For a specific export (`my-cur-2-0-export` in this example), collect Cost and Usage 2.0 reports.
159+
160+
```hcl
145161
partition "aws_cost_and_usage_report" "specific_cur_2_0" {
146162
source "aws_s3_bucket" {
147163
connection = connection.aws.billing_account
@@ -167,22 +183,6 @@ partition "aws_cost_and_usage_report" "specific_cur_legacy" {
167183
}
168184
```
169185

170-
### Collect reports from an S3 bucket
171-
172-
Collect Cost and Usage reports stored in an S3 bucket that use the [default log file name format](https://docs.aws.amazon.com/cur/latest/userguide/dataexports-export-delivery.html#export-summary).
173-
174-
**Note**: We only recommend using the default log file name format if the bucket and prefix combination contains Cost and Usage reports. If other reports, like the Cost and Usage FOCUS report, are stored in the same S3 bucket with the same prefix, Tailpipe will attempt to collect from these too, resulting in errors.
175-
176-
```hcl
177-
partition "aws_cost_and_usage_report" "my_cur" {
178-
source "aws_s3_bucket" {
179-
connection = connection.aws.billing_account
180-
bucket = "aws-cur-billing-bucket"
181-
prefix = "my/prefix/"
182-
}
183-
}
184-
```
185-
186186
### Collect reports from local files
187187

188188
You can also reports from local files.

docs/tables/aws_cost_optimization_recommendation/index.md

+15-19
Original file line numberDiff line numberDiff line change
@@ -132,25 +132,6 @@ order by
132132

133133
## Example Configurations
134134

135-
### Collect for a specific export
136-
137-
For a specific export (`my-recommendations-export` in this example), collect cost optimization recommendations.
138-
139-
```hcl
140-
connection "aws" "billing_account" {
141-
profile = "my-billing-account"
142-
}
143-
144-
partition "aws_cost_optimization_recommendation" "specific_recommendations" {
145-
source "aws_s3_bucket" {
146-
connection = connection.aws.billing_account
147-
bucket = "aws-cost-optimization-recommendations-bucket"
148-
prefix = "my/prefix/"
149-
file_layout = "my-recommendations-export/data/%{DATA:partition}/(?:%{TIMESTAMP_ISO8601:timestamp}-%{UUID:execution_id}/)?%{DATA:filename}.csv.gz"
150-
}
151-
}
152-
```
153-
154135
### Collect recommendations from an S3 bucket
155136

156137
Collect cost optimization recommendations stored in an S3 bucket that use the [default log file name format](https://docs.aws.amazon.com/cur/latest/userguide/dataexports-export-delivery.html#export-summary).
@@ -171,6 +152,21 @@ partition "aws_cost_optimization_recommendation" "my_recommendations" {
171152
}
172153
```
173154

155+
### Collect for a specific export
156+
157+
For a specific export (`my-recommendations-export` in this example), collect cost optimization recommendations.
158+
159+
```hcl
160+
partition "aws_cost_optimization_recommendation" "specific_recommendations" {
161+
source "aws_s3_bucket" {
162+
connection = connection.aws.billing_account
163+
bucket = "aws-cost-optimization-recommendations-bucket"
164+
prefix = "my/prefix/"
165+
file_layout = "my-recommendations-export/data/%{DATA:partition}/(?:%{TIMESTAMP_ISO8601:timestamp}-%{UUID:execution_id}/)?%{DATA:filename}.csv.gz"
166+
}
167+
}
168+
```
169+
174170
### Collect recommendations from local files
175171

176172
You can also collect AWS cost optimization recommendations from local files.

0 commit comments

Comments
 (0)