Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 880 Bytes

aws_iam_account_alias.md

File metadata and controls

69 lines (48 loc) · 880 Bytes

aws_iam_account_alias

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_iam_account_alias" {
  source = "./modules/aws/d/aws_iam_account_alias"

}

top

Variables

top

Datasource

data "aws_iam_account_alias" "this" {
}

top

Outputs

output "account_alias" {
  description = "returns a string"
  value       = data.aws_iam_account_alias.this.account_alias
}

output "id" {
  description = "returns a string"
  value       = data.aws_iam_account_alias.this.id
}

output "this" {
  value = aws_iam_account_alias.this
}

top