Created
July 6, 2017 05:56
-
-
Save adamar/c5b5f5d13a0553fe53014d4f07469cf8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "app" { | |
source = "../../modules/app" | |
asg_name= "app" | |
azs = ["${var.azs}"] | |
subnets = ["${var.subnets}"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "app" { | |
source = "../../../modules/app" | |
asg_name= "app" | |
azs = ["${var.azs}"] | |
subnets = ["${var.subnets}"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remote State | |
terraform { | |
backend "s3" { | |
encrypt = "true" | |
bucket = "terraform-state" | |
key = "terraform/app/new-env/terraform.tfstate" | |
region = "us-east-1" | |
lock_table = "terraform_locks" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remote State | |
terraform { | |
backend "s3" { | |
encrypt = "true" | |
bucket = "terraform-state" | |
key = "terraform/app/terraform.tfstate" | |
region = "us-east-1" | |
lock_table = "terraform_locks" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment