inspec/test/integration/minimal/build/aws.tf
Aaron Lippold 9784520d83 fixed 'count' to 'entries.count' in aws_ec2_security_groups as per the docs (#142)
* * added 'count' to `aws_ec2_security_groups`

Fixes #141

Signed-off-by: Aaron Lippold <lippold@gmail.com>
2017-12-20 12:20:09 -05:00

12 lines
211 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}"
}