back
terraform {
required_providers {
avi = ">= 0.2.3"
}
}
top
module "avi_customerportalinfo" {
source = "./modules/avi/r/avi_customerportalinfo"
# polling_interval - (optional) is a type of number
polling_interval = null
# portal_url - (optional) is a type of string
portal_url = null
# uuid - (optional) is a type of string
uuid = null
}
top
variable "polling_interval" {
description = "(optional)"
type = number
default = null
}
variable "portal_url" {
description = "(optional)"
type = string
default = null
}
variable "uuid" {
description = "(optional)"
type = string
default = null
}
top
resource "avi_customerportalinfo" "this" {
# polling_interval - (optional) is a type of number
polling_interval = var.polling_interval
# portal_url - (optional) is a type of string
portal_url = var.portal_url
# uuid - (optional) is a type of string
uuid = var.uuid
}
top
output "id" {
description = "returns a string"
value = avi_customerportalinfo.this.id
}
output "portal_url" {
description = "returns a string"
value = avi_customerportalinfo.this.portal_url
}
output "uuid" {
description = "returns a string"
value = avi_customerportalinfo.this.uuid
}
output "this" {
value = avi_customerportalinfo.this
}
top