removing the quotes and brackets from interpolated strings, deprecated in 0.12.x

pull/516/head
Jonathan Simon 2019-11-17 23:08:06 -08:00
parent 4b38f4c668
commit 79418a5fb7
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
provider "aws" { provider "aws" {
version = "~> 2.0" version = "~> 2.0"
region = "us-west-2" region = "us-west-2"
access_key = "${var.aws_access_key}" access_key = var.aws_access_key
secret_key = "${var.aws_secret_key}" secret_key = var.aws_secret_key
} }
terraform { terraform {