Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.05 KB

aws_lightsail_domain.md

File metadata and controls

77 lines (56 loc) · 1.05 KB

aws_lightsail_domain

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Resource

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

top

Outputs

output "arn" {
  description = "returns a string"
  value       = aws_lightsail_domain.this.arn
}

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

output "this" {
  value = aws_lightsail_domain.this
}

top