inspec/test/integration/aws/minimal/build/aws.tf
Jerry Aldrich d356cfc6dc Move AWS/Azure tests to integration directory (#2675)
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
2018-02-26 11:10:04 -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}"
}