I already asked but let's try again. I am trying t...
# golang
s
I already asked but let's try again. I am trying to create an Azure Application Gateway and I am looking for a way to avoid using hard coded values for the HttpListeners. From the Application Gateway docs (the link is from the Wayback Machine, since they are unavailable currently on the pulumi page): https://web.archive.org/web/20220526083650/https://www.pulumi.com/registry/packages/azure-native/api-docs/network/applicationgateway/ HttpListeners: []network.ApplicationGatewayHttpListenerArgs{ &network.ApplicationGatewayHttpListenerArgs{ FrontendIPConfiguration: &network.SubResourceArgs{ Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appgwfip"), }, FrontendIPConfiguration is configured before HttpListeners in the example - is there someway to plug that instead of using hardcoded Id of FrontendIPConfiguration?