Skip to content

Commit b54e5b2

Browse files
FIX CE-616: Mention provider alias in README (#32)
1 parent 54d3283 commit b54e5b2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Configuring this module to create CUR S3 bucket and CUR report in your AWS Organ
1414

1515
For the governance IAM role to be created in your account, an ExternalId needs to be set in the `governance_role_external_id` parameter. You will receive this value from Vertice.
1616

17+
Please note that an `aws.us-east-1` provider alias needs to be defined, since Cost and Usage Reports are only supported by AWS in that region.
18+
1719
```hcl
1820
data "aws_caller_identity" "current" {}
1921
@@ -43,6 +45,12 @@ module "vertice_cco_integration_role" {
4345
}
4446
}
4547
48+
# Cost and Usage Report only exists in us-east-1
49+
provider "aws" {
50+
alias = "us-east-1"
51+
region = "us-east-1"
52+
}
53+
4654
terraform {
4755
required_version = ">= 1.1.4"
4856
required_providers {

0 commit comments

Comments
 (0)