2
0
Fork 0
mirror of https://github.com/inspec/inspec synced 2025-01-02 16:29:04 +00:00
inspec/test/integration/minimal/build/aws.tf

12 lines
210 B
Terraform
Raw Normal View History

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}"
}