Skip to content

Instantly share code, notes, and snippets.

@malnick
Last active April 20, 2017 03:18
Show Gist options
  • Save malnick/09310356f90cf1c1f1a54f7ab1c37555 to your computer and use it in GitHub Desktop.
Save malnick/09310356f90cf1c1f1a54f7ab1c37555 to your computer and use it in GitHub Desktop.
main.tf
terraform {
backend "s3" {
bucket = "<redacted>"
key = "<redacted>/dcos.tfstate"
region = "<redacted>"
profile = "<redacted>"
}
}
module "dcos" {
~ source = "/Users/malnick/projects/terraform-dcos/aws"
vpc_remote_state_s3_bucket = "<redacted>"
vpc_remote_state_s3_key = "<redacted>/vpc.tfstate"
vpc_remote_state_s3_region = "<redacted>"
vpc_remote_state_aws_profile = "<redacted>"
+ dcos_aws_template_storage_region_name = "<redacted>"
key_name = "<redacted>"
dcos_num_masters = "3"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment