Skip to content

Latest commit

 

History

History
111 lines (84 loc) · 1.78 KB

aws_lex_bot_alias.md

File metadata and controls

111 lines (84 loc) · 1.78 KB

aws_lex_bot_alias

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

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

top

Datasource

data "aws_lex_bot_alias" "this" {
  # bot_name - (required) is a type of string
  bot_name = var.bot_name
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "bot_version" {
  description = "returns a string"
  value       = data.aws_lex_bot_alias.this.bot_version
}

output "checksum" {
  description = "returns a string"
  value       = data.aws_lex_bot_alias.this.checksum
}

output "created_date" {
  description = "returns a string"
  value       = data.aws_lex_bot_alias.this.created_date
}

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

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

output "last_updated_date" {
  description = "returns a string"
  value       = data.aws_lex_bot_alias.this.last_updated_date
}

output "this" {
  value = aws_lex_bot_alias.this
}

top