inspec/test/aws/default/build/aws.tf
Clinton Wolfe f425a70f79 Rearrange AWS files for merge into core
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2018-02-05 15:58:51 -05:00

21 lines
329 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}"
}
data "aws_region" "region" {
current = true
}
output "aws_region" {
value = "${data.aws_region.region.name}"
}