We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59441c3 commit 85d8d95Copy full SHA for 85d8d95
terraform/bootstrap/main.tf
@@ -10,14 +10,14 @@ terraform {
10
}
11
12
provider "aws" {
13
- region = var.aws_region
+ region = "${var.aws_region}"
14
15
16
module "bootstrap" {
17
source = "trussworks/bootstrap/aws"
18
19
20
- account_alias = var.account_alias
+ account_alias = "${var.account_alias}"
21
dynamodb_table_name = "${var.account_alias}-state-lock"
22
23
@@ -37,5 +37,5 @@ output "user_id" {
37
38
output "backend_details" {
39
description = "Details of the S3 bucket and DynamoDB tables created for backend"
40
- value = module.bootstrap
+ value = "${module.bootstrap}"
41
0 commit comments