mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
10 lines
189 B
Terraform
10 lines
189 B
Terraform
|
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}"
|
||
|
}
|