Microsoft.AppPlatform Spring/apps 2019-05-01-preview

The Spring/apps resource type can be deployed to: Resource groups.

To learn about resource group deployments, see Bicep or ARM template.

Template format

To create a Microsoft.AppPlatform/Spring/apps resource, add the following Bicep or JSON to your template.

resource symbolicname 'Microsoft.AppPlatform/Spring/apps@2019-05-01-preview' = {
  name: 'string'
  location: 'string'
  parent: resourceSymbolicName
  identity: {
    principalId: 'string'
    tenantId: 'string'
    type: 'string'
  }
  properties: {
    activeDeploymentName: 'string'
    fqdn: 'string'
    httpsOnly: bool
    persistentDisk: {
      mountPath: 'string'
      sizeInGB: int
    }
    public: bool
    temporaryDisk: {
      mountPath: 'string'
      sizeInGB: int
    }
  }
}

Property values

Spring/apps

Name Description Value
type The resource type

For Bicep, set this value in the resource declaration.
'Microsoft.AppPlatform/Spring/apps'
apiVersion The resource api version

For Bicep, set this value in the resource declaration.
'2019-05-01-preview'
name The resource name

See how to set names and types for child resources in Bicep or JSON ARM templates.
string (required)
location The GEO location of the application, always the same with its parent resource string
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: Spring
identity Managed identity properties retrieved from ARM request headers. ManagedIdentityProperties
properties App resource properties payload AppResourceProperties

ManagedIdentityProperties

Name Description Value
principalId string
tenantId string
type 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned'

AppResourceProperties

Name Description Value
activeDeploymentName Name of the active deployment of the App string
fqdn Fully qualified dns Name. string
httpsOnly Indicate if only https is allowed. bool
persistentDisk Persistent disk payload PersistentDisk
public Indicates whether the App exposes public endpoint bool
temporaryDisk Temporary disk payload TemporaryDisk

PersistentDisk

Name Description Value
mountPath Mount path of the persistent disk string
sizeInGB Size of the persistent disk in GB int

TemporaryDisk

Name Description Value
mountPath Mount path of the temporary disk string
sizeInGB Size of the temporary disk in GB int

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Deploy a simple Azure Spring Apps microservice application

Deploy to Azure
This template deploys a simple Azure Spring Apps microservice application to run on Azure.