QuestionQ379
Infrastructure and AutomationDrag the code snippets below into the Terraform code boxes to create a new application profile and EPG. Not every code snippet is used.
Drag & Drop
provider
resource
aci_tenant.id
aci_application_profile
aci_application_epg
aci_tenant.aci_tenant.id
"aci_tenant" "aci_tenant" { name = var.aci_tenant } resource "aci_application_profile" "myWebsite" { tenant_dn = name = "my_website" } resource "" "web" { application_profile_dn = aci_application_profile.myWebsite.id name = "web" name_alias = "web" description = "this is the web epg created by terraform" flood_on_encap = local.flood_on_encap fwd_ctrl = local.fwd_ctrl shutdown = local.shutdown }
Community Discussion