We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages an Azure Spring Cloud Deployment with a Java runtime.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new Azure.AppPlatform.SpringCloudServiceArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
});
var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("exampleSpringCloudApp", new Azure.AppPlatform.SpringCloudAppArgs
{
ResourceGroupName = exampleResourceGroup.Name,
ServiceName = exampleSpringCloudService.Name,
Identity = new Azure.AppPlatform.Inputs.SpringCloudAppIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleSpringCloudJavaDeployment = new Azure.AppPlatform.SpringCloudJavaDeployment("exampleSpringCloudJavaDeployment", new Azure.AppPlatform.SpringCloudJavaDeploymentArgs
{
SpringCloudAppId = exampleSpringCloudApp.Id,
InstanceCount = 2,
JvmOptions = "-XX:+PrintGC",
Quota = new Azure.AppPlatform.Inputs.SpringCloudJavaDeploymentQuotaArgs
{
Cpu = "2",
Memory = "4Gi",
},
RuntimeVersion = "Java_11",
EnvironmentVariables =
{
{ "Foo", "Bar" },
{ "Env", "Staging" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/appplatform"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
})
if err != nil {
return err
}
exampleSpringCloudApp, err := appplatform.NewSpringCloudApp(ctx, "exampleSpringCloudApp", &appplatform.SpringCloudAppArgs{
ResourceGroupName: exampleResourceGroup.Name,
ServiceName: exampleSpringCloudService.Name,
Identity: &appplatform.SpringCloudAppIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
_, err = appplatform.NewSpringCloudJavaDeployment(ctx, "exampleSpringCloudJavaDeployment", &appplatform.SpringCloudJavaDeploymentArgs{
SpringCloudAppId: exampleSpringCloudApp.ID(),
InstanceCount: pulumi.Int(2),
JvmOptions: pulumi.String("-XX:+PrintGC"),
Quota: &appplatform.SpringCloudJavaDeploymentQuotaArgs{
Cpu: pulumi.String("2"),
Memory: pulumi.String("4Gi"),
},
RuntimeVersion: pulumi.String("Java_11"),
EnvironmentVariables: pulumi.StringMap{
"Foo": pulumi.String("Bar"),
"Env": pulumi.String("Staging"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
});
const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("exampleSpringCloudApp", {
resourceGroupName: exampleResourceGroup.name,
serviceName: exampleSpringCloudService.name,
identity: {
type: "SystemAssigned",
},
});
const exampleSpringCloudJavaDeployment = new azure.appplatform.SpringCloudJavaDeployment("exampleSpringCloudJavaDeployment", {
springCloudAppId: exampleSpringCloudApp.id,
instanceCount: 2,
jvmOptions: "-XX:+PrintGC",
quota: {
cpu: "2",
memory: "4Gi",
},
runtimeVersion: "Java_11",
environmentVariables: {
Foo: "Bar",
Env: "Staging",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
resource_group_name=example_resource_group.name,
location=example_resource_group.location)
example_spring_cloud_app = azure.appplatform.SpringCloudApp("exampleSpringCloudApp",
resource_group_name=example_resource_group.name,
service_name=example_spring_cloud_service.name,
identity=azure.appplatform.SpringCloudAppIdentityArgs(
type="SystemAssigned",
))
example_spring_cloud_java_deployment = azure.appplatform.SpringCloudJavaDeployment("exampleSpringCloudJavaDeployment",
spring_cloud_app_id=example_spring_cloud_app.id,
instance_count=2,
jvm_options="-XX:+PrintGC",
quota=azure.appplatform.SpringCloudJavaDeploymentQuotaArgs(
cpu="2",
memory="4Gi",
),
runtime_version="Java_11",
environment_variables={
"Foo": "Bar",
"Env": "Staging",
})
Example coming soon!
Create SpringCloudJavaDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SpringCloudJavaDeployment(name: string, args: SpringCloudJavaDeploymentArgs, opts?: CustomResourceOptions);@overload
def SpringCloudJavaDeployment(resource_name: str,
args: SpringCloudJavaDeploymentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SpringCloudJavaDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
spring_cloud_app_id: Optional[str] = None,
cpu: Optional[int] = None,
environment_variables: Optional[Mapping[str, str]] = None,
instance_count: Optional[int] = None,
jvm_options: Optional[str] = None,
memory_in_gb: Optional[int] = None,
name: Optional[str] = None,
quota: Optional[SpringCloudJavaDeploymentQuotaArgs] = None,
runtime_version: Optional[str] = None)func NewSpringCloudJavaDeployment(ctx *Context, name string, args SpringCloudJavaDeploymentArgs, opts ...ResourceOption) (*SpringCloudJavaDeployment, error)public SpringCloudJavaDeployment(string name, SpringCloudJavaDeploymentArgs args, CustomResourceOptions? opts = null)
public SpringCloudJavaDeployment(String name, SpringCloudJavaDeploymentArgs args)
public SpringCloudJavaDeployment(String name, SpringCloudJavaDeploymentArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudJavaDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SpringCloudJavaDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SpringCloudJavaDeploymentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SpringCloudJavaDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudJavaDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudJavaDeploymentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var springCloudJavaDeploymentResource = new Azure.AppPlatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource", new()
{
SpringCloudAppId = "string",
EnvironmentVariables =
{
{ "string", "string" },
},
InstanceCount = 0,
JvmOptions = "string",
Name = "string",
Quota = new Azure.AppPlatform.Inputs.SpringCloudJavaDeploymentQuotaArgs
{
Cpu = "string",
Memory = "string",
},
RuntimeVersion = "string",
});
example, err := appplatform.NewSpringCloudJavaDeployment(ctx, "springCloudJavaDeploymentResource", &appplatform.SpringCloudJavaDeploymentArgs{
SpringCloudAppId: pulumi.String("string"),
EnvironmentVariables: pulumi.StringMap{
"string": pulumi.String("string"),
},
InstanceCount: pulumi.Int(0),
JvmOptions: pulumi.String("string"),
Name: pulumi.String("string"),
Quota: &appplatform.SpringCloudJavaDeploymentQuotaArgs{
Cpu: pulumi.String("string"),
Memory: pulumi.String("string"),
},
RuntimeVersion: pulumi.String("string"),
})
var springCloudJavaDeploymentResource = new SpringCloudJavaDeployment("springCloudJavaDeploymentResource", SpringCloudJavaDeploymentArgs.builder()
.springCloudAppId("string")
.environmentVariables(Map.of("string", "string"))
.instanceCount(0)
.jvmOptions("string")
.name("string")
.quota(SpringCloudJavaDeploymentQuotaArgs.builder()
.cpu("string")
.memory("string")
.build())
.runtimeVersion("string")
.build());
spring_cloud_java_deployment_resource = azure.appplatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource",
spring_cloud_app_id="string",
environment_variables={
"string": "string",
},
instance_count=0,
jvm_options="string",
name="string",
quota={
"cpu": "string",
"memory": "string",
},
runtime_version="string")
const springCloudJavaDeploymentResource = new azure.appplatform.SpringCloudJavaDeployment("springCloudJavaDeploymentResource", {
springCloudAppId: "string",
environmentVariables: {
string: "string",
},
instanceCount: 0,
jvmOptions: "string",
name: "string",
quota: {
cpu: "string",
memory: "string",
},
runtimeVersion: "string",
});
type: azure:appplatform:SpringCloudJavaDeployment
properties:
environmentVariables:
string: string
instanceCount: 0
jvmOptions: string
name: string
quota:
cpu: string
memory: string
runtimeVersion: string
springCloudAppId: string
SpringCloudJavaDeployment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SpringCloudJavaDeployment resource accepts the following input properties:
- Spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- Cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Environment
Variables Dictionary<string, string> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Instance
Count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - Jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- Memory
In intGb - Name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- Quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - Runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
- Spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- Cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Environment
Variables map[string]string - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Instance
Count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - Jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- Memory
In intGb - Name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- Quota
Spring
Cloud Java Deployment Quota Args - A
quotablock as defined below. - Runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
- spring
Cloud StringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu Integer
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables Map<String,String> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count Integer - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options String - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In IntegerGb - name String
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - runtime
Version String - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
- spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu number
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables {[key: string]: string} - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count number - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In numberGb - name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
- spring_
cloud_ strapp_ id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment_
variables Mapping[str, str] - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance_
count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm_
options str - Specifies the jvm option of the Spring Cloud Deployment.
- memory_
in_ intgb - name str
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota Args - A
quotablock as defined below. - runtime_
version str - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
- spring
Cloud StringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu Number
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables Map<String> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count Number - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options String - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In NumberGb - name String
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota Property Map
- A
quotablock as defined below. - runtime
Version String - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudJavaDeployment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SpringCloudJavaDeployment Resource
Get an existing SpringCloudJavaDeployment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SpringCloudJavaDeploymentState, opts?: CustomResourceOptions): SpringCloudJavaDeployment@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cpu: Optional[int] = None,
environment_variables: Optional[Mapping[str, str]] = None,
instance_count: Optional[int] = None,
jvm_options: Optional[str] = None,
memory_in_gb: Optional[int] = None,
name: Optional[str] = None,
quota: Optional[SpringCloudJavaDeploymentQuotaArgs] = None,
runtime_version: Optional[str] = None,
spring_cloud_app_id: Optional[str] = None) -> SpringCloudJavaDeploymentfunc GetSpringCloudJavaDeployment(ctx *Context, name string, id IDInput, state *SpringCloudJavaDeploymentState, opts ...ResourceOption) (*SpringCloudJavaDeployment, error)public static SpringCloudJavaDeployment Get(string name, Input<string> id, SpringCloudJavaDeploymentState? state, CustomResourceOptions? opts = null)public static SpringCloudJavaDeployment get(String name, Output<String> id, SpringCloudJavaDeploymentState state, CustomResourceOptions options)resources: _: type: azure:appplatform:SpringCloudJavaDeployment get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Environment
Variables Dictionary<string, string> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Instance
Count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - Jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- Memory
In intGb - Name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- Quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - Runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - Spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- Cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Environment
Variables map[string]string - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- Instance
Count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - Jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- Memory
In intGb - Name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- Quota
Spring
Cloud Java Deployment Quota Args - A
quotablock as defined below. - Runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - Spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu Integer
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables Map<String,String> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count Integer - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options String - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In IntegerGb - name String
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - runtime
Version String - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - spring
Cloud StringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu number
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables {[key: string]: string} - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count number - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options string - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In numberGb - name string
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota - A
quotablock as defined below. - runtime
Version string - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - spring
Cloud stringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu int
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment_
variables Mapping[str, str] - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance_
count int - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm_
options str - Specifies the jvm option of the Spring Cloud Deployment.
- memory_
in_ intgb - name str
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota
Spring
Cloud Java Deployment Quota Args - A
quotablock as defined below. - runtime_
version str - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - spring_
cloud_ strapp_ id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
- cpu Number
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - environment
Variables Map<String> - Specifies the environment variables of the Spring Cloud Deployment as a map of key-value pairs.
- instance
Count Number - Specifies the required instance count of the Spring Cloud Deployment. Possible Values are between
1and500. Defaults to1if not specified. - jvm
Options String - Specifies the jvm option of the Spring Cloud Deployment.
- memory
In NumberGb - name String
- Specifies the name of the Spring Cloud Deployment. Changing this forces a new resource to be created.
- quota Property Map
- A
quotablock as defined below. - runtime
Version String - Specifies the runtime version of the Spring Cloud Deployment. Possible Values are
Java_8andJava_11. Defaults toJava_8. - spring
Cloud StringApp Id - Specifies the id of the Spring Cloud Application in which to create the Deployment. Changing this forces a new resource to be created.
Supporting Types
SpringCloudJavaDeploymentQuota, SpringCloudJavaDeploymentQuotaArgs
- Cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Memory string
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
- Cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - Memory string
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
- cpu String
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - memory String
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
- cpu string
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - memory string
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
- cpu str
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - memory str
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
- cpu String
- Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m,1,2,3and4. Defaults to1if not specified. - memory String
- Specifies the required memory size of the Spring Cloud Deployment. Possible Values are
512Mi,1Gi,2Gi,3Gi,4Gi,5Gi,6Gi,7Gi, and8Gi. Defaults to1Giif not specified.
Import
Spring Cloud Deployment can be imported using the resource id, e.g.
$ pulumi import azure:appplatform/springCloudJavaDeployment:SpringCloudJavaDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroup1/providers/Microsoft.AppPlatform/Spring/service1/apps/app1/deployments/deploy1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
