Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 924 Bytes

aws_simpledb_domain.md

File metadata and controls

72 lines (52 loc) · 924 Bytes

aws_simpledb_domain

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Resource

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

top

Outputs

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

output "this" {
  value = aws_simpledb_domain.this
}

top