mirror of
https://github.com/inspec/inspec
synced 2024-12-21 10:33:23 +00:00
9784520d83
* * added 'count' to `aws_ec2_security_groups` Fixes #141 Signed-off-by: Aaron Lippold <lippold@gmail.com>
12 lines
211 B
HCL
12 lines
211 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}"
|
|
}
|