Skip to main content

Azure Container Apps

Azure Container Apps example

This example lives in the pulumi/examples repository. Check out just this directory to use it:

Get started with this example
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examples
git -C pulumi-examples sparse-checkout set azure-yaml-container-apps
cd pulumi-examples/azure-yaml-container-apps

Starting point for building web application hosted in Azure Container Apps.

Prerequisites#

  1. Install Pulumi
  2. Configure Azure credentials

Deploying the example#

  1. Create a new stack:

    Terminal window
    pulumi stack init dev
  2. Log in to the Azure CLI (you will be prompted to do this during deployment if you forget this step):

    Terminal window
    az login
  3. Set the Azure region to deploy into:

    Terminal window
    pulumi config set azure-native:location westus2
  4. Deploy the stack:

    Terminal window
    pulumi up
    Previewing changes:
    ...
    Performing changes:
    ...
    Resources:
    + 7 created
    Duration: 4m18s
  5. Check the deployed endpoint:

    Terminal window
    curl "$(pulumi stack output endpoint)"
    <html>
    <body>
    <h1>Your custom docker image is running in Azure Container Apps!</h1>
    </body>
    </html>

Cleaning up#

Once you’re finished experimenting, tear down your stack’s resources by destroying and removing it:

Terminal window
pulumi destroy
pulumi stack rm

Related

The infrastructure as code platform for any cloud.