Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.08 KB

aws_fms_admin_account.md

File metadata and controls

78 lines (57 loc) · 1.08 KB

aws_fms_admin_account

back

Index

Terraform

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

top

Example Usage

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

  # account_id - (optional) is a type of string
  account_id = null
}

top

Variables

variable "account_id" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Resource

resource "aws_fms_admin_account" "this" {
  # account_id - (optional) is a type of string
  account_id = var.account_id
}

top

Outputs

output "account_id" {
  description = "returns a string"
  value       = aws_fms_admin_account.this.account_id
}

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

output "this" {
  value = aws_fms_admin_account.this
}

top