Hello, I would like to deploy a container to azure...
# azure
c
Hello, I would like to deploy a container to azure container apps and I need to expose multiple ports. My configuration language is go, and I am using the following packages "github.com/pulumi/pulumi-azure-native-sdk/app/v2" "github.com/pulumi/pulumi-azure-native-sdk/operationalinsights/v2" "github.com/pulumi/pulumi-azure-native-sdk/resources/v2" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" I can see that I can configure additional ports in the Azure UI, but I didn't find anything in the pulumi documentation.
a
Additional TCP ports for Container Apps is still in preview so you'll have to use
<https://github.com/pulumi/pulumi-azure-native-sdk/app/v2/v20230801preview>
version of the SDK, which should have the
IngressPortMappingArgs
property for Ingress. Don't use Go myself but I believe that's where I'd guess the go module would be located.