Skip to content

Commit 141d3aa

Browse files
committed
docs(readme): update to indicate TF v0.11 support only and update version to v0.3.0 in example
1 parent d84bc1b commit 141d3aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Terraform modules which create AWS resources for a Segment Data Lake.
88

99
* Accept the [Data Lakes Terms of Service] after clicking "Configure Data Lakes" here: (https://app.segment.com/{workspace_slug}/destinations/catalog?category=DataLakes) (replace the `{workspace_slug}` with your workspace slug).
1010
* Authorized [AWS account](https://aws.amazon.com/account/).
11-
* Ability to run Terraform with your AWS Account. You must use Terraform 0.11 or higher.
11+
* Ability to run Terraform with your AWS Account. Only Terraform 0.11 is supported atm.
1212
* A subnet within a VPC for the EMR cluster to run in.
1313
* An [S3 Bucket](https://github.com/terraform-aws-modules/terraform-aws-s3-bucket) for Segment to load data into. You can create a new one just for this, or re-use an existing one you already have.
1414

@@ -92,7 +92,7 @@ resource "aws_s3_bucket" "segment_datalake_s3" {
9292
# Creates the IAM Policy that allows Segment to access the necessary resources
9393
# in your AWS account for loading your data.
9494
module "iam" {
95-
source = "[email protected]:segmentio/terraform-aws-data-lake//modules/iam?ref=v0.2.0"
95+
source = "[email protected]:segmentio/terraform-aws-data-lake//modules/iam?ref=v0.3.0"
9696
9797
suffix = "prod"
9898
s3_bucket = "${aws_s3_bucket.segment_datalake_s3.id}"
@@ -102,7 +102,7 @@ module "iam" {
102102
# Creates an EMR Cluster that Segment uses for performing the final ETL on your
103103
# data that lands in S3.
104104
module "emr" {
105-
source = "[email protected]:segmentio/terraform-aws-data-lake//modules/emr?ref=v0.2.0"
105+
source = "[email protected]:segmentio/terraform-aws-data-lake//modules/emr?ref=v0.3.0"
106106
107107
s3_bucket = "${aws_s3_bucket.segment_datalake_s3.id}"
108108
subnet_id = "subnet-XXX" # Replace this with the subnet ID you want the EMR cluster to run in.
@@ -113,6 +113,7 @@ module "emr" {
113113
iam_emr_instance_profile = "${module.iam.iam_emr_instance_profile}"
114114
}
115115
```
116+
116117
## Provision Resources
117118
* Provide AWS credentials of the account being used. More details here: https://www.terraform.io/docs/providers/aws/index.html
118119
```

0 commit comments

Comments
 (0)