back
terraform {
required_providers {
aci = ">= 0.5.4"
}
}
top
module "aci_application_profile" {
source = "./modules/aci/r/aci_application_profile"
# 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
# prio - (optional) is a type of string
prio = null
# relation_fv_rs_ap_mon_pol - (optional) is a type of string
relation_fv_rs_ap_mon_pol = null
# tenant_dn - (required) is a type of string
tenant_dn = 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
}
variable "prio" {
description = "(optional)"
type = string
default = null
}
variable "relation_fv_rs_ap_mon_pol" {
description = "(optional)"
type = string
default = null
}
variable "tenant_dn" {
description = "(required)"
type = string
}
top
resource "aci_application_profile" "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
# prio - (optional) is a type of string
prio = var.prio
# relation_fv_rs_ap_mon_pol - (optional) is a type of string
relation_fv_rs_ap_mon_pol = var.relation_fv_rs_ap_mon_pol
# tenant_dn - (required) is a type of string
tenant_dn = var.tenant_dn
}
top
output "description" {
description = "returns a string"
value = aci_application_profile.this.description
}
output "id" {
description = "returns a string"
value = aci_application_profile.this.id
}
output "name_alias" {
description = "returns a string"
value = aci_application_profile.this.name_alias
}
output "prio" {
description = "returns a string"
value = aci_application_profile.this.prio
}
output "this" {
value = aci_application_profile.this
}
top