We recommend using Azure Native.
azure.appplatform.SpringCloudBuildDeployment
Explore with Pulumi AI
Manages a Spring Cloud Build Deployment.
NOTE: This resource is applicable only for Spring Cloud Service with enterprise tier.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
SkuName = "E0",
});
var exampleSpringCloudApp = new Azure.AppPlatform.SpringCloudApp("exampleSpringCloudApp", new()
{
ResourceGroupName = exampleSpringCloudService.ResourceGroupName,
ServiceName = exampleSpringCloudService.Name,
});
var exampleSpringCloudBuildDeployment = new Azure.AppPlatform.SpringCloudBuildDeployment("exampleSpringCloudBuildDeployment", new()
{
SpringCloudAppId = exampleSpringCloudApp.Id,
BuildResultId = "<default>",
InstanceCount = 2,
EnvironmentVariables =
{
{ "Foo", "Bar" },
{ "Env", "Staging" },
},
Quota = new Azure.AppPlatform.Inputs.SpringCloudBuildDeploymentQuotaArgs
{
Cpu = "2",
Memory = "4Gi",
},
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
"github.com/pulumi/pulumi-azure/sdk/v5/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{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
SkuName: pulumi.String("E0"),
})
if err != nil {
return err
}
exampleSpringCloudApp, err := appplatform.NewSpringCloudApp(ctx, "exampleSpringCloudApp", &appplatform.SpringCloudAppArgs{
ResourceGroupName: exampleSpringCloudService.ResourceGroupName,
ServiceName: exampleSpringCloudService.Name,
})
if err != nil {
return err
}
_, err = appplatform.NewSpringCloudBuildDeployment(ctx, "exampleSpringCloudBuildDeployment", &appplatform.SpringCloudBuildDeploymentArgs{
SpringCloudAppId: exampleSpringCloudApp.ID(),
BuildResultId: pulumi.String("<default>"),
InstanceCount: pulumi.Int(2),
EnvironmentVariables: pulumi.StringMap{
"Foo": pulumi.String("Bar"),
"Env": pulumi.String("Staging"),
},
Quota: &appplatform.SpringCloudBuildDeploymentQuotaArgs{
Cpu: pulumi.String("2"),
Memory: pulumi.String("4Gi"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appplatform.SpringCloudService;
import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
import com.pulumi.azure.appplatform.SpringCloudApp;
import com.pulumi.azure.appplatform.SpringCloudAppArgs;
import com.pulumi.azure.appplatform.SpringCloudBuildDeployment;
import com.pulumi.azure.appplatform.SpringCloudBuildDeploymentArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudBuildDeploymentQuotaArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.skuName("E0")
.build());
var exampleSpringCloudApp = new SpringCloudApp("exampleSpringCloudApp", SpringCloudAppArgs.builder()
.resourceGroupName(exampleSpringCloudService.resourceGroupName())
.serviceName(exampleSpringCloudService.name())
.build());
var exampleSpringCloudBuildDeployment = new SpringCloudBuildDeployment("exampleSpringCloudBuildDeployment", SpringCloudBuildDeploymentArgs.builder()
.springCloudAppId(exampleSpringCloudApp.id())
.buildResultId("<default>")
.instanceCount(2)
.environmentVariables(Map.ofEntries(
Map.entry("Foo", "Bar"),
Map.entry("Env", "Staging")
))
.quota(SpringCloudBuildDeploymentQuotaArgs.builder()
.cpu("2")
.memory("4Gi")
.build())
.build());
}
}
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",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku_name="E0")
example_spring_cloud_app = azure.appplatform.SpringCloudApp("exampleSpringCloudApp",
resource_group_name=example_spring_cloud_service.resource_group_name,
service_name=example_spring_cloud_service.name)
example_spring_cloud_build_deployment = azure.appplatform.SpringCloudBuildDeployment("exampleSpringCloudBuildDeployment",
spring_cloud_app_id=example_spring_cloud_app.id,
build_result_id="<default>",
instance_count=2,
environment_variables={
"Foo": "Bar",
"Env": "Staging",
},
quota=azure.appplatform.SpringCloudBuildDeploymentQuotaArgs(
cpu="2",
memory="4Gi",
))
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", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
skuName: "E0",
});
const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("exampleSpringCloudApp", {
resourceGroupName: exampleSpringCloudService.resourceGroupName,
serviceName: exampleSpringCloudService.name,
});
const exampleSpringCloudBuildDeployment = new azure.appplatform.SpringCloudBuildDeployment("exampleSpringCloudBuildDeployment", {
springCloudAppId: exampleSpringCloudApp.id,
buildResultId: "<default>",
instanceCount: 2,
environmentVariables: {
Foo: "Bar",
Env: "Staging",
},
quota: {
cpu: "2",
memory: "4Gi",
},
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleSpringCloudService:
type: azure:appplatform:SpringCloudService
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
skuName: E0
exampleSpringCloudApp:
type: azure:appplatform:SpringCloudApp
properties:
resourceGroupName: ${exampleSpringCloudService.resourceGroupName}
serviceName: ${exampleSpringCloudService.name}
exampleSpringCloudBuildDeployment:
type: azure:appplatform:SpringCloudBuildDeployment
properties:
springCloudAppId: ${exampleSpringCloudApp.id}
buildResultId: <default>
instanceCount: 2
environmentVariables:
Foo: Bar
Env: Staging
quota:
cpu: '2'
memory: 4Gi
Create SpringCloudBuildDeployment Resource
new SpringCloudBuildDeployment(name: string, args: SpringCloudBuildDeploymentArgs, opts?: CustomResourceOptions);
@overload
def SpringCloudBuildDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
addon_json: Optional[str] = None,
build_result_id: Optional[str] = None,
environment_variables: Optional[Mapping[str, str]] = None,
instance_count: Optional[int] = None,
name: Optional[str] = None,
quota: Optional[SpringCloudBuildDeploymentQuotaArgs] = None,
spring_cloud_app_id: Optional[str] = None)
@overload
def SpringCloudBuildDeployment(resource_name: str,
args: SpringCloudBuildDeploymentArgs,
opts: Optional[ResourceOptions] = None)
func NewSpringCloudBuildDeployment(ctx *Context, name string, args SpringCloudBuildDeploymentArgs, opts ...ResourceOption) (*SpringCloudBuildDeployment, error)
public SpringCloudBuildDeployment(string name, SpringCloudBuildDeploymentArgs args, CustomResourceOptions? opts = null)
public SpringCloudBuildDeployment(String name, SpringCloudBuildDeploymentArgs args)
public SpringCloudBuildDeployment(String name, SpringCloudBuildDeploymentArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudBuildDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudBuildDeploymentArgs
- 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 SpringCloudBuildDeploymentArgs
- 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 SpringCloudBuildDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudBuildDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudBuildDeploymentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SpringCloudBuildDeployment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SpringCloudBuildDeployment resource accepts the following input properties:
- Build
Result stringId The ID of the Spring Cloud Build Result.
- Spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- Addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- Name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- Quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.
- Build
Result stringId The ID of the Spring Cloud Build Result.
- Spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- Addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- Name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- Quota
Spring
Cloud Build Deployment Quota Args A
quota
block as defined below.
- build
Result StringId The ID of the Spring Cloud Build Result.
- spring
Cloud StringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json String A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- name String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.
- build
Result stringId The ID of the Spring Cloud Build Result.
- spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.
- build_
result_ strid The ID of the Spring Cloud Build Result.
- spring_
cloud_ strapp_ id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon_
json str A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- name str
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota Args A
quota
block as defined below.
- build
Result StringId The ID of the Spring Cloud Build Result.
- spring
Cloud StringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json String A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- 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
1
and500
. Defaults to1
if not specified.- name String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota Property Map
A
quota
block as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudBuildDeployment 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 SpringCloudBuildDeployment Resource
Get an existing SpringCloudBuildDeployment 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?: SpringCloudBuildDeploymentState, opts?: CustomResourceOptions): SpringCloudBuildDeployment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addon_json: Optional[str] = None,
build_result_id: Optional[str] = None,
environment_variables: Optional[Mapping[str, str]] = None,
instance_count: Optional[int] = None,
name: Optional[str] = None,
quota: Optional[SpringCloudBuildDeploymentQuotaArgs] = None,
spring_cloud_app_id: Optional[str] = None) -> SpringCloudBuildDeployment
func GetSpringCloudBuildDeployment(ctx *Context, name string, id IDInput, state *SpringCloudBuildDeploymentState, opts ...ResourceOption) (*SpringCloudBuildDeployment, error)
public static SpringCloudBuildDeployment Get(string name, Input<string> id, SpringCloudBuildDeploymentState? state, CustomResourceOptions? opts = null)
public static SpringCloudBuildDeployment get(String name, Output<String> id, SpringCloudBuildDeploymentState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- Build
Result stringId The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- Name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- Quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.- Spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- Addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- Build
Result stringId The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- Name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- Quota
Spring
Cloud Build Deployment Quota Args A
quota
block as defined below.- Spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json String A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- build
Result StringId The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- name String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.- spring
Cloud StringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json string A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- build
Result stringId The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- name string
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota A
quota
block as defined below.- spring
Cloud stringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon_
json str A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- build_
result_ strid The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- name str
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota
Spring
Cloud Build Deployment Quota Args A
quota
block as defined below.- spring_
cloud_ strapp_ id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
- addon
Json String A JSON object that contains the addon configurations of the Spring Cloud Build Deployment.
- build
Result StringId The ID of the Spring Cloud Build Result.
- 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
1
and500
. Defaults to1
if not specified.- name String
The name which should be used for this Spring Cloud Build Deployment. Changing this forces a new Spring Cloud Build Deployment to be created.
- quota Property Map
A
quota
block as defined below.- spring
Cloud StringApp Id The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Build Deployment to be created.
Supporting Types
SpringCloudBuildDeploymentQuota, SpringCloudBuildDeploymentQuotaArgs
- Cpu string
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
- Cpu string
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
- cpu String
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
- cpu string
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
- cpu str
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
- cpu String
Specifies the required cpu of the Spring Cloud Deployment. Possible Values are
500m
,1
,2
,3
and4
. Defaults to1
if not specified.Note:
cpu
supports500m
and1
for Basic tier,500m
,1
,2
,3
and4
for Standard tier.- 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 to1Gi
if not specified.Note:
memory
supports512Mi
,1Gi
and2Gi
for Basic tier,512Mi
,1Gi
,2Gi
,3Gi
,4Gi
,5Gi
,6Gi
,7Gi
, and8Gi
for Standard tier.
Import
Spring Cloud Build Deployments can be imported using the resource id
, e.g.
$ pulumi import azure:appplatform/springCloudBuildDeployment:SpringCloudBuildDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.AppPlatform/spring/spring1/apps/app1/deployments/deploy1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.