back
terraform {
required_providers {
aci = ">= 0.5.4"
}
}
top
module "aci_trigger_scheduler" {
source = "./modules/aci/r/aci_trigger_scheduler"
# annotation - (optional) is a type of string
annotation = null
# description - (optional) is a type of string
description = null
# name - (required) is a type of string
name = null
# name_alias - (optional) is a type of string
name_alias = null
}
top
variable "annotation" {
description = "(optional)"
type = string
default = null
}
variable "description" {
description = "(optional)"
type = string
default = null
}
variable "name" {
description = "(required)"
type = string
}
variable "name_alias" {
description = "(optional)"
type = string
default = null
}
top
resource "aci_trigger_scheduler" "this" {
# annotation - (optional) is a type of string
annotation = var.annotation
# description - (optional) is a type of string
description = var.description
# name - (required) is a type of string
name = var.name
# name_alias - (optional) is a type of string
name_alias = var.name_alias
}
top
output "description" {
description = "returns a string"
value = aci_trigger_scheduler.this.description
}
output "id" {
description = "returns a string"
value = aci_trigger_scheduler.this.id
}
output "name_alias" {
description = "returns a string"
value = aci_trigger_scheduler.this.name_alias
}
output "this" {
value = aci_trigger_scheduler.this
}
top