You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 1st function node does not give the option to set "Redirect" on consumer and provider connector types. Redirect is only available for the routing_mode attribute.
When adding the 2nd function node for the FW, there are no errors during apply but GUI does not get configured.
Please kindly advise if I am missing something or if this is not expected. Thank you.
Version
Version 26.0(2h) - Azure
Terraform Provider: 2.12.2
Affected Resource(s)
aci_l4_l7_service_graph_template
aci_function_node
Terraform Configuration Files
# Create Logical Firewall Representation (3rd party example)resource"aci_cloud_l4_l7_third_party_device""pa_fw" {
tenant_dn=data.aci_tenant.infra_tenant.idname=var.fw_namerelation_cloud_rs_ldev_to_ctx=data.aci_vrf.services_vrf.idinterface_selectors {
allow_all="yes"name="trust"end_point_selectors {
match_expression="custom:internal=='trust'"name="trust"
}
}
interface_selectors {
allow_all="yes"name="untrust"end_point_selectors {
match_expression="custom:external=='untrust'"name="untrust"
}
}
}
# Create Native Network Load Balancer for Firewallresource"aci_cloud_l4_l7_native_load_balancer""fw_nlb" {
tenant_dn=data.aci_tenant.infra_tenant.idname=var.fw_nlb_namerelation_cloud_rs_ldev_to_cloud_subnet=[data.aci_cloud_subnet.fw_nlb_subnet.id]
allow_all="yes"is_static_ip="yes"# Refer to https://github.com/CiscoDevNet/terraform-provider-aci/issues/1129scheme="internal"cloud_l4l7_load_balancer_type="network"
}
# Create Service Graph for FW and NLBresource"aci_l4_l7_service_graph_template""fw_sg" {
tenant_dn=data.aci_tenant.tenant1.idname=var.fw_sgl4_l7_service_graph_template_type="cloud"
}
resource"aci_function_node""nlb" {
l4_l7_service_graph_template_dn=aci_l4_l7_service_graph_template.fw_sg.idname="fw-nlb"func_template_type="CLOUD_NATIVE_LB"routing_mode="Redirect"# No option to set Redirect on consumer and provider connector typesrelation_vns_rs_node_to_cloud_l_dev=aci_cloud_l4_l7_native_load_balancer.fw_nlb.id
}
resource"aci_function_node""pan_fw" { # does not get configuredl4_l7_service_graph_template_dn=aci_l4_l7_service_graph_template.fw_sg.idname="pan-fw"func_template_type="FW_ROUTED"relation_vns_rs_node_to_cloud_l_dev=aci_cloud_l4_l7_third_party_device.pa_fw.idl4_l7_device_interface_consumer_name="trust"l4_l7_device_interface_provider_name="untrust"
}
Description
I am encountering a few issues with the resources below:
Please kindly advise if I am missing something or if this is not expected. Thank you.
Version
Affected Resource(s)
Terraform Configuration Files
complete code
Debug Output
Logs
References
The text was updated successfully, but these errors were encountered: