back
terraform {
required_providers {
alicloud = ">= 1.120.0"
}
}
top
module "alicloud_route_table" {
source = "./modules/alicloud/r/alicloud_route_table"
# description - (optional) is a type of string
description = null
# name - (optional) is a type of string
name = null
# route_table_name - (optional) is a type of string
route_table_name = null
# tags - (optional) is a type of map of string
tags = {}
# vpc_id - (required) is a type of string
vpc_id = null
timeouts = [{
create = null
}]
}
top
variable "description" {
description = "(optional)"
type = string
default = null
}
variable "name" {
description = "(optional)"
type = string
default = null
}
variable "route_table_name" {
description = "(optional)"
type = string
default = null
}
variable "tags" {
description = "(optional)"
type = map(string)
default = null
}
variable "vpc_id" {
description = "(required)"
type = string
}
variable "timeouts" {
description = "nested block: NestingSingle, min items: 0, max items: 0"
type = set(object(
{
create = string
}
))
default = []
}
top
resource "alicloud_route_table" "this" {
# description - (optional) is a type of string
description = var.description
# name - (optional) is a type of string
name = var.name
# route_table_name - (optional) is a type of string
route_table_name = var.route_table_name
# tags - (optional) is a type of map of string
tags = var.tags
# vpc_id - (required) is a type of string
vpc_id = var.vpc_id
dynamic "timeouts" {
for_each = var.timeouts
content {
# create - (optional) is a type of string
create = timeouts.value["create"]
}
}
}
top
output "id" {
description = "returns a string"
value = alicloud_route_table.this.id
}
output "name" {
description = "returns a string"
value = alicloud_route_table.this.name
}
output "route_table_name" {
description = "returns a string"
value = alicloud_route_table.this.route_table_name
}
output "status" {
description = "returns a string"
value = alicloud_route_table.this.status
}
output "this" {
value = alicloud_route_table.this
}
top