inspec/test/integration/minimal/build/aws.tf
Sam Cornwell efffcfd928 pin Terraform aws provider verson to 1.1 (#151)
Signed-off-by: Sam Cornwell <14048146+samcornwell@users.noreply.github.com>
2017-12-20 12:04:43 -05:00

12 lines
No EOL
210 B
HCL

terraform {
required_version = "~> 0.10.0"
}
provider "aws" {
version = "= 1.1"
}
data "aws_caller_identity" "creds" {}
output "aws_account_id" {
value = "${data.aws_caller_identity.creds.account_id}"
}