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 Service.
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 exampleInsights = new Azure.AppInsights.Insights("exampleInsights", new Azure.AppInsights.InsightsArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
ApplicationType = "web",
});
var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new Azure.AppPlatform.SpringCloudServiceArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
SkuName = "S0",
ConfigServerGitSetting = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingArgs
{
Uri = "https://github.com/Azure-Samples/piggymetrics",
Label = "config",
SearchPaths =
{
"dir1",
"dir2",
},
},
Trace = new Azure.AppPlatform.Inputs.SpringCloudServiceTraceArgs
{
ConnectionString = exampleInsights.ConnectionString,
SampleRate = 10,
},
Tags =
{
{ "Env", "staging" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/appinsights"
"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
}
exampleInsights, err := appinsights.NewInsights(ctx, "exampleInsights", &appinsights.InsightsArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
ApplicationType: pulumi.String("web"),
})
if err != nil {
return err
}
_, err = appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
SkuName: pulumi.String("S0"),
ConfigServerGitSetting: &appplatform.SpringCloudServiceConfigServerGitSettingArgs{
Uri: pulumi.String("https://github.com/Azure-Samples/piggymetrics"),
Label: pulumi.String("config"),
SearchPaths: pulumi.StringArray{
pulumi.String("dir1"),
pulumi.String("dir2"),
},
},
Trace: &appplatform.SpringCloudServiceTraceArgs{
ConnectionString: exampleInsights.ConnectionString,
SampleRate: pulumi.Float64(10),
},
Tags: pulumi.StringMap{
"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 exampleInsights = new azure.appinsights.Insights("exampleInsights", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
applicationType: "web",
});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
skuName: "S0",
configServerGitSetting: {
uri: "https://github.com/Azure-Samples/piggymetrics",
label: "config",
searchPaths: [
"dir1",
"dir2",
],
},
trace: {
connectionString: exampleInsights.connectionString,
sampleRate: 10,
},
tags: {
Env: "staging",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_insights = azure.appinsights.Insights("exampleInsights",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
application_type="web")
example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
sku_name="S0",
config_server_git_setting=azure.appplatform.SpringCloudServiceConfigServerGitSettingArgs(
uri="https://github.com/Azure-Samples/piggymetrics",
label="config",
search_paths=[
"dir1",
"dir2",
],
),
trace=azure.appplatform.SpringCloudServiceTraceArgs(
connection_string=example_insights.connection_string,
sample_rate=10,
),
tags={
"Env": "staging",
})
Example coming soon!
Create SpringCloudService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SpringCloudService(name: string, args: SpringCloudServiceArgs, opts?: CustomResourceOptions);@overload
def SpringCloudService(resource_name: str,
args: SpringCloudServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SpringCloudService(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
network: Optional[SpringCloudServiceNetworkArgs] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
trace: Optional[SpringCloudServiceTraceArgs] = None)func NewSpringCloudService(ctx *Context, name string, args SpringCloudServiceArgs, opts ...ResourceOption) (*SpringCloudService, error)public SpringCloudService(string name, SpringCloudServiceArgs args, CustomResourceOptions? opts = null)
public SpringCloudService(String name, SpringCloudServiceArgs args)
public SpringCloudService(String name, SpringCloudServiceArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudService
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 SpringCloudServiceArgs
- 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 SpringCloudServiceArgs
- 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 SpringCloudServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudServiceArgs
- 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 springCloudServiceResource = new Azure.AppPlatform.SpringCloudService("springCloudServiceResource", new()
{
ResourceGroupName = "string",
ConfigServerGitSetting = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingArgs
{
Uri = "string",
HttpBasicAuth = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs
{
Password = "string",
Username = "string",
},
Label = "string",
Repositories = new[]
{
new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingRepositoryArgs
{
Name = "string",
Uri = "string",
HttpBasicAuth = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs
{
Password = "string",
Username = "string",
},
Label = "string",
Patterns = new[]
{
"string",
},
SearchPaths = new[]
{
"string",
},
SshAuth = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs
{
PrivateKey = "string",
HostKey = "string",
HostKeyAlgorithm = "string",
StrictHostKeyCheckingEnabled = false,
},
},
},
SearchPaths = new[]
{
"string",
},
SshAuth = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingSshAuthArgs
{
PrivateKey = "string",
HostKey = "string",
HostKeyAlgorithm = "string",
StrictHostKeyCheckingEnabled = false,
},
},
Location = "string",
Name = "string",
Network = new Azure.AppPlatform.Inputs.SpringCloudServiceNetworkArgs
{
AppSubnetId = "string",
CidrRanges = new[]
{
"string",
},
ServiceRuntimeSubnetId = "string",
AppNetworkResourceGroup = "string",
ServiceRuntimeNetworkResourceGroup = "string",
},
SkuName = "string",
Tags =
{
{ "string", "string" },
},
Trace = new Azure.AppPlatform.Inputs.SpringCloudServiceTraceArgs
{
ConnectionString = "string",
SampleRate = 0,
},
});
example, err := appplatform.NewSpringCloudService(ctx, "springCloudServiceResource", &appplatform.SpringCloudServiceArgs{
ResourceGroupName: pulumi.String("string"),
ConfigServerGitSetting: &appplatform.SpringCloudServiceConfigServerGitSettingArgs{
Uri: pulumi.String("string"),
HttpBasicAuth: &appplatform.SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Label: pulumi.String("string"),
Repositories: appplatform.SpringCloudServiceConfigServerGitSettingRepositoryArray{
&appplatform.SpringCloudServiceConfigServerGitSettingRepositoryArgs{
Name: pulumi.String("string"),
Uri: pulumi.String("string"),
HttpBasicAuth: &appplatform.SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Label: pulumi.String("string"),
Patterns: pulumi.StringArray{
pulumi.String("string"),
},
SearchPaths: pulumi.StringArray{
pulumi.String("string"),
},
SshAuth: &appplatform.SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs{
PrivateKey: pulumi.String("string"),
HostKey: pulumi.String("string"),
HostKeyAlgorithm: pulumi.String("string"),
StrictHostKeyCheckingEnabled: pulumi.Bool(false),
},
},
},
SearchPaths: pulumi.StringArray{
pulumi.String("string"),
},
SshAuth: &appplatform.SpringCloudServiceConfigServerGitSettingSshAuthArgs{
PrivateKey: pulumi.String("string"),
HostKey: pulumi.String("string"),
HostKeyAlgorithm: pulumi.String("string"),
StrictHostKeyCheckingEnabled: pulumi.Bool(false),
},
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Network: &appplatform.SpringCloudServiceNetworkArgs{
AppSubnetId: pulumi.String("string"),
CidrRanges: pulumi.StringArray{
pulumi.String("string"),
},
ServiceRuntimeSubnetId: pulumi.String("string"),
AppNetworkResourceGroup: pulumi.String("string"),
ServiceRuntimeNetworkResourceGroup: pulumi.String("string"),
},
SkuName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Trace: &appplatform.SpringCloudServiceTraceArgs{
ConnectionString: pulumi.String("string"),
SampleRate: pulumi.Float64(0),
},
})
var springCloudServiceResource = new SpringCloudService("springCloudServiceResource", SpringCloudServiceArgs.builder()
.resourceGroupName("string")
.configServerGitSetting(SpringCloudServiceConfigServerGitSettingArgs.builder()
.uri("string")
.httpBasicAuth(SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs.builder()
.password("string")
.username("string")
.build())
.label("string")
.repositories(SpringCloudServiceConfigServerGitSettingRepositoryArgs.builder()
.name("string")
.uri("string")
.httpBasicAuth(SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs.builder()
.password("string")
.username("string")
.build())
.label("string")
.patterns("string")
.searchPaths("string")
.sshAuth(SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs.builder()
.privateKey("string")
.hostKey("string")
.hostKeyAlgorithm("string")
.strictHostKeyCheckingEnabled(false)
.build())
.build())
.searchPaths("string")
.sshAuth(SpringCloudServiceConfigServerGitSettingSshAuthArgs.builder()
.privateKey("string")
.hostKey("string")
.hostKeyAlgorithm("string")
.strictHostKeyCheckingEnabled(false)
.build())
.build())
.location("string")
.name("string")
.network(SpringCloudServiceNetworkArgs.builder()
.appSubnetId("string")
.cidrRanges("string")
.serviceRuntimeSubnetId("string")
.appNetworkResourceGroup("string")
.serviceRuntimeNetworkResourceGroup("string")
.build())
.skuName("string")
.tags(Map.of("string", "string"))
.trace(SpringCloudServiceTraceArgs.builder()
.connectionString("string")
.sampleRate(0.0)
.build())
.build());
spring_cloud_service_resource = azure.appplatform.SpringCloudService("springCloudServiceResource",
resource_group_name="string",
config_server_git_setting={
"uri": "string",
"http_basic_auth": {
"password": "string",
"username": "string",
},
"label": "string",
"repositories": [{
"name": "string",
"uri": "string",
"http_basic_auth": {
"password": "string",
"username": "string",
},
"label": "string",
"patterns": ["string"],
"search_paths": ["string"],
"ssh_auth": {
"private_key": "string",
"host_key": "string",
"host_key_algorithm": "string",
"strict_host_key_checking_enabled": False,
},
}],
"search_paths": ["string"],
"ssh_auth": {
"private_key": "string",
"host_key": "string",
"host_key_algorithm": "string",
"strict_host_key_checking_enabled": False,
},
},
location="string",
name="string",
network={
"app_subnet_id": "string",
"cidr_ranges": ["string"],
"service_runtime_subnet_id": "string",
"app_network_resource_group": "string",
"service_runtime_network_resource_group": "string",
},
sku_name="string",
tags={
"string": "string",
},
trace={
"connection_string": "string",
"sample_rate": 0,
})
const springCloudServiceResource = new azure.appplatform.SpringCloudService("springCloudServiceResource", {
resourceGroupName: "string",
configServerGitSetting: {
uri: "string",
httpBasicAuth: {
password: "string",
username: "string",
},
label: "string",
repositories: [{
name: "string",
uri: "string",
httpBasicAuth: {
password: "string",
username: "string",
},
label: "string",
patterns: ["string"],
searchPaths: ["string"],
sshAuth: {
privateKey: "string",
hostKey: "string",
hostKeyAlgorithm: "string",
strictHostKeyCheckingEnabled: false,
},
}],
searchPaths: ["string"],
sshAuth: {
privateKey: "string",
hostKey: "string",
hostKeyAlgorithm: "string",
strictHostKeyCheckingEnabled: false,
},
},
location: "string",
name: "string",
network: {
appSubnetId: "string",
cidrRanges: ["string"],
serviceRuntimeSubnetId: "string",
appNetworkResourceGroup: "string",
serviceRuntimeNetworkResourceGroup: "string",
},
skuName: "string",
tags: {
string: "string",
},
trace: {
connectionString: "string",
sampleRate: 0,
},
});
type: azure:appplatform:SpringCloudService
properties:
configServerGitSetting:
httpBasicAuth:
password: string
username: string
label: string
repositories:
- httpBasicAuth:
password: string
username: string
label: string
name: string
patterns:
- string
searchPaths:
- string
sshAuth:
hostKey: string
hostKeyAlgorithm: string
privateKey: string
strictHostKeyCheckingEnabled: false
uri: string
searchPaths:
- string
sshAuth:
hostKey: string
hostKeyAlgorithm: string
privateKey: string
strictHostKeyCheckingEnabled: false
uri: string
location: string
name: string
network:
appNetworkResourceGroup: string
appSubnetId: string
cidrRanges:
- string
serviceRuntimeNetworkResourceGroup: string
serviceRuntimeSubnetId: string
resourceGroupName: string
skuName: string
tags:
string: string
trace:
connectionString: string
sampleRate: 0
SpringCloudService 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 SpringCloudService resource accepts the following input properties:
- Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Config
Server SpringGit Setting Cloud Service Config Server Git Setting Args - A
config_server_git_settingblock as defined below. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network Args - A
networkblock as defined below. Changing this forces a new resource to be created. - Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - map[string]string
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace Args - A
traceblock as defined below.
- resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Map<String,String>
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- resource_
group_ strname - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- config_
server_ Springgit_ setting Cloud Service Config Server Git Setting Args - A
config_server_git_settingblock as defined below. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network Args - A
networkblock as defined below. Changing this forces a new resource to be created. - sku_
name str - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace Args - A
traceblock as defined below.
- resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- config
Server Property MapGit Setting - A
config_server_git_settingblock as defined below. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network Property Map
- A
networkblock as defined below. Changing this forces a new resource to be created. - sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Map<String>
- A mapping of tags to assign to the resource.
- trace Property Map
- A
traceblock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudService resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Outbound
Public List<string>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rulesblocks as defined below.
- Id string
- The provider-assigned unique ID for this managed resource.
- Outbound
Public []stringIp Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network []SpringTraffic Rules Cloud Service Required Network Traffic Rule - A list of
required_network_traffic_rulesblocks as defined below.
- id String
- The provider-assigned unique ID for this managed resource.
- outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rulesblocks as defined below.
- id string
- The provider-assigned unique ID for this managed resource.
- outbound
Public string[]Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network SpringTraffic Rules Cloud Service Required Network Traffic Rule[] - A list of
required_network_traffic_rulesblocks as defined below.
- id str
- The provider-assigned unique ID for this managed resource.
- outbound_
public_ Sequence[str]ip_ addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required_
network_ Sequence[Springtraffic_ rules Cloud Service Required Network Traffic Rule] - A list of
required_network_traffic_rulesblocks as defined below.
- id String
- The provider-assigned unique ID for this managed resource.
- outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<Property Map>Traffic Rules - A list of
required_network_traffic_rulesblocks as defined below.
Look up Existing SpringCloudService Resource
Get an existing SpringCloudService 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?: SpringCloudServiceState, opts?: CustomResourceOptions): SpringCloudService@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
network: Optional[SpringCloudServiceNetworkArgs] = None,
outbound_public_ip_addresses: Optional[Sequence[str]] = None,
required_network_traffic_rules: Optional[Sequence[SpringCloudServiceRequiredNetworkTrafficRuleArgs]] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
trace: Optional[SpringCloudServiceTraceArgs] = None) -> SpringCloudServicefunc GetSpringCloudService(ctx *Context, name string, id IDInput, state *SpringCloudServiceState, opts ...ResourceOption) (*SpringCloudService, error)public static SpringCloudService Get(string name, Input<string> id, SpringCloudServiceState? state, CustomResourceOptions? opts = null)public static SpringCloudService get(String name, Output<String> id, SpringCloudServiceState state, CustomResourceOptions options)resources: _: type: azure:appplatform:SpringCloudService 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.
- Config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - Outbound
Public List<string>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rulesblocks as defined below. - Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- Config
Server SpringGit Setting Cloud Service Config Server Git Setting Args - A
config_server_git_settingblock as defined below. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network Args - A
networkblock as defined below. Changing this forces a new resource to be created. - Outbound
Public []stringIp Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network []SpringTraffic Rules Cloud Service Required Network Traffic Rule Args - A list of
required_network_traffic_rulesblocks as defined below. - Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - map[string]string
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace Args - A
traceblock as defined below.
- config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rulesblocks as defined below. - resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Map<String,String>
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_settingblock as defined below. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
networkblock as defined below. Changing this forces a new resource to be created. - outbound
Public string[]Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network SpringTraffic Rules Cloud Service Required Network Traffic Rule[] - A list of
required_network_traffic_rulesblocks as defined below. - resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
traceblock as defined below.
- config_
server_ Springgit_ setting Cloud Service Config Server Git Setting Args - A
config_server_git_settingblock as defined below. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network Args - A
networkblock as defined below. Changing this forces a new resource to be created. - outbound_
public_ Sequence[str]ip_ addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required_
network_ Sequence[Springtraffic_ rules Cloud Service Required Network Traffic Rule Args] - A list of
required_network_traffic_rulesblocks as defined below. - resource_
group_ strname - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- sku_
name str - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace Args - A
traceblock as defined below.
- config
Server Property MapGit Setting - A
config_server_git_settingblock as defined below. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network Property Map
- A
networkblock as defined below. Changing this forces a new resource to be created. - outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<Property Map>Traffic Rules - A list of
required_network_traffic_rulesblocks as defined below. - resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0andS0. Defaults toS0. - Map<String>
- A mapping of tags to assign to the resource.
- trace Property Map
- A
traceblock as defined below.
Supporting Types
SpringCloudServiceConfigServerGitSetting, SpringCloudServiceConfigServerGitSettingArgs
- Uri string
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_authblock as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Repositories
List<Spring
Cloud Service Config Server Git Setting Repository> - One or more
repositoryblocks as defined below. - Search
Paths List<string> - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_authblock as defined below.
- Uri string
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_authblock as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Repositories
[]Spring
Cloud Service Config Server Git Setting Repository - One or more
repositoryblocks as defined below. - Search
Paths []string - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_authblock as defined below.
- uri String
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_authblock as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
List<Spring
Cloud Service Config Server Git Setting Repository> - One or more
repositoryblocks as defined below. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_authblock as defined below.
- uri string
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_authblock as defined below. - label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
Spring
Cloud Service Config Server Git Setting Repository[] - One or more
repositoryblocks as defined below. - search
Paths string[] - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_authblock as defined below.
- uri str
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - http_
basic_ Springauth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_authblock as defined below. - label str
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
Sequence[Spring
Cloud Service Config Server Git Setting Repository] - One or more
repositoryblocks as defined below. - search_
paths Sequence[str] - An array of strings used to search subdirectories of the Git repository.
- ssh_
auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_authblock as defined below.
- uri String
- The URI of the default Git repository used as the Config Server back end, should be started with
http://,https://,git@, orssh://. - http
Basic Property MapAuth - A
http_basic_authblock as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories List<Property Map>
- One or more
repositoryblocks as defined below. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth Property Map - A
ssh_authblock as defined below.
SpringCloudServiceConfigServerGitSettingHttpBasicAuth, SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs
SpringCloudServiceConfigServerGitSettingRepository, SpringCloudServiceConfigServerGitSettingRepositoryArgs
- Name string
- A name to identify on the Git repository, required only if repos exists.
- Uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_authblock as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Patterns List<string>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - Search
Paths List<string> - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_authblock as defined below.
- Name string
- A name to identify on the Git repository, required only if repos exists.
- Uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_authblock as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Patterns []string
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - Search
Paths []string - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_authblock as defined below.
- name String
- A name to identify on the Git repository, required only if repos exists.
- uri String
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_authblock as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns List<String>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_authblock as defined below.
- name string
- A name to identify on the Git repository, required only if repos exists.
- uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_authblock as defined below. - label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns string[]
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - search
Paths string[] - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_authblock as defined below.
- name str
- A name to identify on the Git repository, required only if repos exists.
- uri str
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - http_
basic_ Springauth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_authblock as defined below. - label str
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns Sequence[str]
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - search_
paths Sequence[str] - An array of strings used to search subdirectories of the Git repository.
- ssh_
auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_authblock as defined below.
- name String
- A name to identify on the Git repository, required only if repos exists.
- uri String
- The URI of the Git repository that's used as the Config Server back end should be started with
http://,https://,git@, orssh://. - http
Basic Property MapAuth - A
http_basic_authblock as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns List<String>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}format with wildcards. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth Property Map - A
ssh_authblock as defined below.
SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth, SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs
SpringCloudServiceConfigServerGitSettingRepositorySshAuth, SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - Strict
Host boolKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - Strict
Host boolKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host BooleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host booleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private_
key str - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host_
key str - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host_
key_ stralgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict_
host_ boolkey_ checking_ enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host BooleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
SpringCloudServiceConfigServerGitSettingSshAuth, SpringCloudServiceConfigServerGitSettingSshAuthArgs
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - Strict
Host boolKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - Strict
Host boolKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host BooleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host booleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private_
key str - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host_
key str - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host_
key_ stralgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict_
host_ boolkey_ checking_ enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@orssh://. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists. - strict
Host BooleanKey Checking Enabled - Indicates whether the Config Server instance will fail to start if the host_key does not match.
SpringCloudServiceNetwork, SpringCloudServiceNetworkArgs
- App
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- Cidr
Ranges List<string> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- Service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- App
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- Service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- App
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- Cidr
Ranges []string - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- Service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- App
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- Service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app
Subnet StringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges List<String> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime StringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network StringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- service
Runtime StringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges string[] - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app_
subnet_ strid - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr_
ranges Sequence[str] - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service_
runtime_ strsubnet_ id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app_
network_ strresource_ group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- service_
runtime_ strnetwork_ resource_ group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app
Subnet StringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges List<String> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime StringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network StringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- service
Runtime StringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
SpringCloudServiceRequiredNetworkTrafficRule, SpringCloudServiceRequiredNetworkTrafficRuleArgs
- Direction string
- The direction of required traffic. Possible values are
Inbound,Outbound. - Fqdns List<string>
- The FQDN list of required traffic.
- Ip
Addresses List<string> - Port int
- The port of required traffic.
- Protocol string
- The protocol of required traffic.
- Direction string
- The direction of required traffic. Possible values are
Inbound,Outbound. - Fqdns []string
- The FQDN list of required traffic.
- Ip
Addresses []string - Port int
- The port of required traffic.
- Protocol string
- The protocol of required traffic.
- direction String
- The direction of required traffic. Possible values are
Inbound,Outbound. - fqdns List<String>
- The FQDN list of required traffic.
- ip
Addresses List<String> - port Integer
- The port of required traffic.
- protocol String
- The protocol of required traffic.
- direction string
- The direction of required traffic. Possible values are
Inbound,Outbound. - fqdns string[]
- The FQDN list of required traffic.
- ip
Addresses string[] - port number
- The port of required traffic.
- protocol string
- The protocol of required traffic.
- direction str
- The direction of required traffic. Possible values are
Inbound,Outbound. - fqdns Sequence[str]
- The FQDN list of required traffic.
- ip_
addresses Sequence[str] - port int
- The port of required traffic.
- protocol str
- The protocol of required traffic.
- direction String
- The direction of required traffic. Possible values are
Inbound,Outbound. - fqdns List<String>
- The FQDN list of required traffic.
- ip
Addresses List<String> - port Number
- The port of required traffic.
- protocol String
- The protocol of required traffic.
SpringCloudServiceTrace, SpringCloudServiceTraceArgs
- Connection
String string - The connection string used for Application Insights.
- Instrumentation
Key string - Sample
Rate double - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
- Connection
String string - The connection string used for Application Insights.
- Instrumentation
Key string - Sample
Rate float64 - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
- connection
String String - The connection string used for Application Insights.
- instrumentation
Key String - sample
Rate Double - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
- connection
String string - The connection string used for Application Insights.
- instrumentation
Key string - sample
Rate number - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
- connection_
string str - The connection string used for Application Insights.
- instrumentation_
key str - sample_
rate float - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
- connection
String String - The connection string used for Application Insights.
- instrumentation
Key String - sample
Rate Number - The sampling rate of Application Insights Agent. Must be between
0.0and100.0. Defaults to10.0.
Import
Spring Cloud services can be imported using the resource id, e.g.
$ pulumi import azure:appplatform/springCloudService:SpringCloudService example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AppPlatform/Spring/spring1
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
