Fixes #284
Changes the AWS profile to be a user-supplied variable, opposed to statically being just `terraform`.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
provider "aws" {
|
||||
shared_credentials_file = "${var.shared_credentials_file}"
|
||||
region = "${var.region}"
|
||||
profile = "terraform"
|
||||
profile = "${var.profile}"
|
||||
}
|
||||
|
||||
# Create a VPC to launch our instances into
|
||||
|
||||
Reference in New Issue
Block a user