inspec/test/integration/minimal/build/aws.tf
Clinton Wolfe c75252ae1c
Rework Integration Testing to Support Multiple Accounts (#128)
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2017-12-15 01:37:36 -05:00

10 lines
No EOL
189 B
HCL

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