1. Packages
  2. Azure Classic
  3. API Docs
  4. appplatform
  5. SpringCloudService

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
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:

    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTrace
    A trace block as defined below.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block 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 SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    resourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    skuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    resource_group_name str
    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_git_setting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block 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 SpringCloudServiceNetworkArgs
    A network block 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 B0 and S0. Defaults to S0.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    configServerGitSetting Property Map
    A config_server_git_setting block 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 network block as defined below. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags Map<String>
    A mapping of tags to assign to the resource.
    trace Property Map
    A trace block 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.
    OutboundPublicIpAddresses List<string>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    Id string
    The provider-assigned unique ID for this managed resource.
    OutboundPublicIpAddresses []string
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules []SpringCloudServiceRequiredNetworkTrafficRule
    A list of required_network_traffic_rules blocks as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    id string
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses string[]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules SpringCloudServiceRequiredNetworkTrafficRule[]
    A list of required_network_traffic_rules blocks as defined below.
    id str
    The provider-assigned unique ID for this managed resource.
    outbound_public_ip_addresses Sequence[str]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    required_network_traffic_rules Sequence[SpringCloudServiceRequiredNetworkTrafficRule]
    A list of required_network_traffic_rules blocks as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<Property Map>
    A list of required_network_traffic_rules blocks 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) -> SpringCloudService
    func 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.
    The following state arguments are supported:
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    OutboundPublicIpAddresses List<string>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTrace
    A trace block as defined below.
    ConfigServerGitSetting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block 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 SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    OutboundPublicIpAddresses []string
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    RequiredNetworkTrafficRules []SpringCloudServiceRequiredNetworkTrafficRuleArgs
    A list of required_network_traffic_rules blocks as defined below.
    ResourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    Trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<SpringCloudServiceRequiredNetworkTrafficRule>
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    configServerGitSetting SpringCloudServiceConfigServerGitSetting
    A config_server_git_setting block 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 SpringCloudServiceNetwork
    A network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses string[]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules SpringCloudServiceRequiredNetworkTrafficRule[]
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName string
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    skuName string
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTrace
    A trace block as defined below.
    config_server_git_setting SpringCloudServiceConfigServerGitSettingArgs
    A config_server_git_setting block 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 SpringCloudServiceNetworkArgs
    A network block as defined below. Changing this forces a new resource to be created.
    outbound_public_ip_addresses Sequence[str]
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    required_network_traffic_rules Sequence[SpringCloudServiceRequiredNetworkTrafficRuleArgs]
    A list of required_network_traffic_rules blocks as defined below.
    resource_group_name str
    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 B0 and S0. Defaults to S0.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    trace SpringCloudServiceTraceArgs
    A trace block as defined below.
    configServerGitSetting Property Map
    A config_server_git_setting block 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 network block as defined below. Changing this forces a new resource to be created.
    outboundPublicIpAddresses List<String>
    A list of the outbound Public IP Addresses used by this Spring Cloud Service.
    requiredNetworkTrafficRules List<Property Map>
    A list of required_network_traffic_rules blocks as defined below.
    resourceGroupName String
    Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this Spring Cloud Service. Possible values are B0 and S0. Defaults to S0.
    tags Map<String>
    A mapping of tags to assign to the resource.
    trace Property Map
    A trace block 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@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block 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<SpringCloudServiceConfigServerGitSettingRepository>
    One or more repository blocks as defined below.
    SearchPaths List<string>
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block 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@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block 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 []SpringCloudServiceConfigServerGitSettingRepository
    One or more repository blocks as defined below.
    SearchPaths []string
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block 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<SpringCloudServiceConfigServerGitSettingRepository>
    One or more repository blocks as defined below.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block 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 SpringCloudServiceConfigServerGitSettingRepository[]
    One or more repository blocks as defined below.
    searchPaths string[]
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block 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@, or ssh://.
    http_basic_auth SpringCloudServiceConfigServerGitSettingHttpBasicAuth
    A http_basic_auth block 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[SpringCloudServiceConfigServerGitSettingRepository]
    One or more repository blocks as defined below.
    search_paths Sequence[str]
    An array of strings used to search subdirectories of the Git repository.
    ssh_auth SpringCloudServiceConfigServerGitSettingSshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth Property Map
    A http_basic_auth block 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 repository blocks as defined below.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth Property Map
    A ssh_auth block as defined below.

    SpringCloudServiceConfigServerGitSettingHttpBasicAuth, SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs

    Password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password str
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username str
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.

    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@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block 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.
    SearchPaths List<string>
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block 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@, or ssh://.
    HttpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block 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.
    SearchPaths []string
    An array of strings used to search subdirectories of the Git repository.
    SshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block 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.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block 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.
    searchPaths string[]
    An array of strings used to search subdirectories of the Git repository.
    sshAuth SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block 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@, or ssh://.
    http_basic_auth SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth
    A http_basic_auth block 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 SpringCloudServiceConfigServerGitSettingRepositorySshAuth
    A ssh_auth block 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@, or ssh://.
    httpBasicAuth Property Map
    A http_basic_auth block 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.
    searchPaths List<String>
    An array of strings used to search subdirectories of the Git repository.
    sshAuth Property Map
    A ssh_auth block as defined below.

    SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth, SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs

    Password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    Username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password string
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username string
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password str
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username str
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    password String
    The password used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.
    username String
    The username that's used to access the Git repository server, required when the Git repository server supports Http Basic Authentication.

    SpringCloudServiceConfigServerGitSettingRepositorySshAuth, SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs

    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled boolean
    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@ or ssh://.
    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_algorithm str
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strict_host_key_checking_enabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match.

    SpringCloudServiceConfigServerGitSettingSshAuth, SpringCloudServiceConfigServerGitSettingSshAuthArgs

    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    PrivateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    HostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    HostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    StrictHostKeyCheckingEnabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey string
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey string
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm string
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled boolean
    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@ or ssh://.
    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_algorithm str
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strict_host_key_checking_enabled bool
    Indicates whether the Config Server instance will fail to start if the host_key does not match.
    privateKey String
    The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.
    hostKey String
    The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
    hostKeyAlgorithm String
    The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.
    strictHostKeyCheckingEnabled Boolean
    Indicates whether the Config Server instance will fail to start if the host_key does not match.

    SpringCloudServiceNetwork, SpringCloudServiceNetworkArgs

    AppSubnetId string
    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.
    CidrRanges 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.
    ServiceRuntimeSubnetId string
    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.
    AppNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    ServiceRuntimeNetworkResourceGroup string
    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.
    AppSubnetId string
    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.
    CidrRanges []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.
    ServiceRuntimeSubnetId string
    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.
    AppNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    ServiceRuntimeNetworkResourceGroup string
    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.
    appSubnetId String
    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.
    cidrRanges 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.
    serviceRuntimeSubnetId String
    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.
    appNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    serviceRuntimeNetworkResourceGroup String
    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.
    appSubnetId string
    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.
    cidrRanges 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.
    serviceRuntimeSubnetId string
    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.
    appNetworkResourceGroup string
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    serviceRuntimeNetworkResourceGroup string
    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_id str
    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_subnet_id str
    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_resource_group str
    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_network_resource_group str
    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.
    appSubnetId String
    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.
    cidrRanges 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.
    serviceRuntimeSubnetId String
    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.
    appNetworkResourceGroup String
    Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
    serviceRuntimeNetworkResourceGroup String
    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.
    IpAddresses 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.
    IpAddresses []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.
    ipAddresses 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.
    ipAddresses 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.
    ipAddresses List<String>
    port Number
    The port of required traffic.
    protocol String
    The protocol of required traffic.

    SpringCloudServiceTrace, SpringCloudServiceTraceArgs

    ConnectionString string
    The connection string used for Application Insights.
    InstrumentationKey string

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    SampleRate double
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    ConnectionString string
    The connection string used for Application Insights.
    InstrumentationKey string

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    SampleRate float64
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString String
    The connection string used for Application Insights.
    instrumentationKey String

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    sampleRate Double
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString string
    The connection string used for Application Insights.
    instrumentationKey string

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    sampleRate number
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connection_string str
    The connection string used for Application Insights.
    instrumentation_key str

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    sample_rate float
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.0.
    connectionString String
    The connection string used for Application Insights.
    instrumentationKey String

    Deprecated: This property is due to be removed from this service's API and thus has been deprecated and will be removed in v3.0 of the provider. Please switch to using the connection_string property with the connection string for the Application Insights instance to use.

    sampleRate Number
    The sampling rate of Application Insights Agent. Must be between 0.0 and 100.0. Defaults to 10.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 azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.