mirror of
https://github.com/inspec/inspec
synced 2024-12-20 18:13:20 +00:00
efffcfd928
Signed-off-by: Sam Cornwell <14048146+samcornwell@users.noreply.github.com>
12 lines
No EOL
210 B
HCL
12 lines
No EOL
210 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}"
|
|
} |