mirror of
https://github.com/inspec/inspec
synced 2024-12-30 06:53:22 +00:00
c75252ae1c
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
10 lines
No EOL
189 B
HCL
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}"
|
|
} |