Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 1.08 KB

aws_macie_member_account_association.md

File metadata and controls

72 lines (52 loc) · 1.08 KB

aws_macie_member_account_association

back

Index

Terraform

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

top

Example Usage

module "aws_macie_member_account_association" {
  source = "./modules/aws/r/aws_macie_member_account_association"

  # member_account_id - (required) is a type of string
  member_account_id = null
}

top

Variables

variable "member_account_id" {
  description = "(required)"
  type        = string
}

top

Resource

resource "aws_macie_member_account_association" "this" {
  # member_account_id - (required) is a type of string
  member_account_id = var.member_account_id
}

top

Outputs

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

output "this" {
  value = aws_macie_member_account_association.this
}

top