We recommend using Azure Native.
azure.appplatform.SpringCloudService
Explore with Pulumi AI
Manages an Azure Spring Cloud Service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleInsights = new azure.appinsights.Insights("example", {
    name: "tf-test-appinsights",
    location: example.location,
    resourceGroupName: example.name,
    applicationType: "web",
});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
    name: "example-springcloud",
    resourceGroupName: example.name,
    location: example.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 = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_insights = azure.appinsights.Insights("example",
    name="tf-test-appinsights",
    location=example.location,
    resource_group_name=example.name,
    application_type="web")
example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
    name="example-springcloud",
    resource_group_name=example.name,
    location=example.location,
    sku_name="S0",
    config_server_git_setting={
        "uri": "https://github.com/Azure-Samples/piggymetrics",
        "label": "config",
        "search_paths": [
            "dir1",
            "dir2",
        ],
    },
    trace={
        "connection_string": example_insights.connection_string,
        "sample_rate": 10,
    },
    tags={
        "Env": "staging",
    })
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appinsights"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appplatform"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
			Name:              pulumi.String("tf-test-appinsights"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			ApplicationType:   pulumi.String("web"),
		})
		if err != nil {
			return err
		}
		_, err = appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
			Name:              pulumi.String("example-springcloud"),
			ResourceGroupName: example.Name,
			Location:          example.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
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleInsights = new Azure.AppInsights.Insights("example", new()
    {
        Name = "tf-test-appinsights",
        Location = example.Location,
        ResourceGroupName = example.Name,
        ApplicationType = "web",
    });
    var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
    {
        Name = "example-springcloud",
        ResourceGroupName = example.Name,
        Location = example.Location,
        SkuName = "S0",
        ConfigServerGitSetting = new Azure.AppPlatform.Inputs.SpringCloudServiceConfigServerGitSettingArgs
        {
            Uri = "https://github.com/Azure-Samples/piggymetrics",
            Label = "config",
            SearchPaths = new[]
            {
                "dir1",
                "dir2",
            },
        },
        Trace = new Azure.AppPlatform.Inputs.SpringCloudServiceTraceArgs
        {
            ConnectionString = exampleInsights.ConnectionString,
            SampleRate = 10,
        },
        Tags = 
        {
            { "Env", "staging" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appinsights.Insights;
import com.pulumi.azure.appinsights.InsightsArgs;
import com.pulumi.azure.appplatform.SpringCloudService;
import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudServiceConfigServerGitSettingArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudServiceTraceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());
        var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()
            .name("tf-test-appinsights")
            .location(example.location())
            .resourceGroupName(example.name())
            .applicationType("web")
            .build());
        var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
            .name("example-springcloud")
            .resourceGroupName(example.name())
            .location(example.location())
            .skuName("S0")
            .configServerGitSetting(SpringCloudServiceConfigServerGitSettingArgs.builder()
                .uri("https://github.com/Azure-Samples/piggymetrics")
                .label("config")
                .searchPaths(                
                    "dir1",
                    "dir2")
                .build())
            .trace(SpringCloudServiceTraceArgs.builder()
                .connectionString(exampleInsights.connectionString())
                .sampleRate(10)
                .build())
            .tags(Map.of("Env", "staging"))
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleInsights:
    type: azure:appinsights:Insights
    name: example
    properties:
      name: tf-test-appinsights
      location: ${example.location}
      resourceGroupName: ${example.name}
      applicationType: web
  exampleSpringCloudService:
    type: azure:appplatform:SpringCloudService
    name: example
    properties:
      name: example-springcloud
      resourceGroupName: ${example.name}
      location: ${example.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
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,
                       name: Optional[str] = None,
                       marketplace: Optional[SpringCloudServiceMarketplaceArgs] = None,
                       default_build_service: Optional[SpringCloudServiceDefaultBuildServiceArgs] = None,
                       location: Optional[str] = None,
                       network: Optional[SpringCloudServiceNetworkArgs] = None,
                       managed_environment_id: Optional[str] = None,
                       container_registries: Optional[Sequence[SpringCloudServiceContainerRegistryArgs]] = None,
                       build_agent_pool_size: Optional[str] = None,
                       log_stream_public_endpoint_enabled: Optional[bool] = None,
                       config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
                       service_registry_enabled: Optional[bool] = None,
                       sku_name: Optional[str] = None,
                       sku_tier: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       trace: Optional[SpringCloudServiceTraceArgs] = None,
                       zone_redundant: Optional[bool] = 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",
    Name = "string",
    Marketplace = new Azure.AppPlatform.Inputs.SpringCloudServiceMarketplaceArgs
    {
        Plan = "string",
        Product = "string",
        Publisher = "string",
    },
    DefaultBuildService = new Azure.AppPlatform.Inputs.SpringCloudServiceDefaultBuildServiceArgs
    {
        ContainerRegistryName = "string",
    },
    Location = "string",
    Network = new Azure.AppPlatform.Inputs.SpringCloudServiceNetworkArgs
    {
        AppSubnetId = "string",
        CidrRanges = new[]
        {
            "string",
        },
        ServiceRuntimeSubnetId = "string",
        AppNetworkResourceGroup = "string",
        OutboundType = "string",
        ReadTimeoutSeconds = 0,
        ServiceRuntimeNetworkResourceGroup = "string",
    },
    ManagedEnvironmentId = "string",
    ContainerRegistries = new[]
    {
        new Azure.AppPlatform.Inputs.SpringCloudServiceContainerRegistryArgs
        {
            Name = "string",
            Password = "string",
            Server = "string",
            Username = "string",
        },
    },
    BuildAgentPoolSize = "string",
    LogStreamPublicEndpointEnabled = false,
    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,
        },
    },
    ServiceRegistryEnabled = false,
    SkuName = "string",
    SkuTier = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Trace = new Azure.AppPlatform.Inputs.SpringCloudServiceTraceArgs
    {
        ConnectionString = "string",
        SampleRate = 0,
    },
    ZoneRedundant = false,
});
example, err := appplatform.NewSpringCloudService(ctx, "springCloudServiceResource", &appplatform.SpringCloudServiceArgs{
	ResourceGroupName: pulumi.String("string"),
	Name:              pulumi.String("string"),
	Marketplace: &appplatform.SpringCloudServiceMarketplaceArgs{
		Plan:      pulumi.String("string"),
		Product:   pulumi.String("string"),
		Publisher: pulumi.String("string"),
	},
	DefaultBuildService: &appplatform.SpringCloudServiceDefaultBuildServiceArgs{
		ContainerRegistryName: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Network: &appplatform.SpringCloudServiceNetworkArgs{
		AppSubnetId: pulumi.String("string"),
		CidrRanges: pulumi.StringArray{
			pulumi.String("string"),
		},
		ServiceRuntimeSubnetId:             pulumi.String("string"),
		AppNetworkResourceGroup:            pulumi.String("string"),
		OutboundType:                       pulumi.String("string"),
		ReadTimeoutSeconds:                 pulumi.Int(0),
		ServiceRuntimeNetworkResourceGroup: pulumi.String("string"),
	},
	ManagedEnvironmentId: pulumi.String("string"),
	ContainerRegistries: appplatform.SpringCloudServiceContainerRegistryArray{
		&appplatform.SpringCloudServiceContainerRegistryArgs{
			Name:     pulumi.String("string"),
			Password: pulumi.String("string"),
			Server:   pulumi.String("string"),
			Username: pulumi.String("string"),
		},
	},
	BuildAgentPoolSize:             pulumi.String("string"),
	LogStreamPublicEndpointEnabled: pulumi.Bool(false),
	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),
		},
	},
	ServiceRegistryEnabled: pulumi.Bool(false),
	SkuName:                pulumi.String("string"),
	SkuTier:                pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Trace: &appplatform.SpringCloudServiceTraceArgs{
		ConnectionString: pulumi.String("string"),
		SampleRate:       pulumi.Float64(0),
	},
	ZoneRedundant: pulumi.Bool(false),
})
var springCloudServiceResource = new SpringCloudService("springCloudServiceResource", SpringCloudServiceArgs.builder()
    .resourceGroupName("string")
    .name("string")
    .marketplace(SpringCloudServiceMarketplaceArgs.builder()
        .plan("string")
        .product("string")
        .publisher("string")
        .build())
    .defaultBuildService(SpringCloudServiceDefaultBuildServiceArgs.builder()
        .containerRegistryName("string")
        .build())
    .location("string")
    .network(SpringCloudServiceNetworkArgs.builder()
        .appSubnetId("string")
        .cidrRanges("string")
        .serviceRuntimeSubnetId("string")
        .appNetworkResourceGroup("string")
        .outboundType("string")
        .readTimeoutSeconds(0)
        .serviceRuntimeNetworkResourceGroup("string")
        .build())
    .managedEnvironmentId("string")
    .containerRegistries(SpringCloudServiceContainerRegistryArgs.builder()
        .name("string")
        .password("string")
        .server("string")
        .username("string")
        .build())
    .buildAgentPoolSize("string")
    .logStreamPublicEndpointEnabled(false)
    .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())
    .serviceRegistryEnabled(false)
    .skuName("string")
    .skuTier("string")
    .tags(Map.of("string", "string"))
    .trace(SpringCloudServiceTraceArgs.builder()
        .connectionString("string")
        .sampleRate(0)
        .build())
    .zoneRedundant(false)
    .build());
spring_cloud_service_resource = azure.appplatform.SpringCloudService("springCloudServiceResource",
    resource_group_name="string",
    name="string",
    marketplace={
        "plan": "string",
        "product": "string",
        "publisher": "string",
    },
    default_build_service={
        "container_registry_name": "string",
    },
    location="string",
    network={
        "app_subnet_id": "string",
        "cidr_ranges": ["string"],
        "service_runtime_subnet_id": "string",
        "app_network_resource_group": "string",
        "outbound_type": "string",
        "read_timeout_seconds": 0,
        "service_runtime_network_resource_group": "string",
    },
    managed_environment_id="string",
    container_registries=[{
        "name": "string",
        "password": "string",
        "server": "string",
        "username": "string",
    }],
    build_agent_pool_size="string",
    log_stream_public_endpoint_enabled=False,
    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,
        },
    },
    service_registry_enabled=False,
    sku_name="string",
    sku_tier="string",
    tags={
        "string": "string",
    },
    trace={
        "connection_string": "string",
        "sample_rate": 0,
    },
    zone_redundant=False)
const springCloudServiceResource = new azure.appplatform.SpringCloudService("springCloudServiceResource", {
    resourceGroupName: "string",
    name: "string",
    marketplace: {
        plan: "string",
        product: "string",
        publisher: "string",
    },
    defaultBuildService: {
        containerRegistryName: "string",
    },
    location: "string",
    network: {
        appSubnetId: "string",
        cidrRanges: ["string"],
        serviceRuntimeSubnetId: "string",
        appNetworkResourceGroup: "string",
        outboundType: "string",
        readTimeoutSeconds: 0,
        serviceRuntimeNetworkResourceGroup: "string",
    },
    managedEnvironmentId: "string",
    containerRegistries: [{
        name: "string",
        password: "string",
        server: "string",
        username: "string",
    }],
    buildAgentPoolSize: "string",
    logStreamPublicEndpointEnabled: false,
    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,
        },
    },
    serviceRegistryEnabled: false,
    skuName: "string",
    skuTier: "string",
    tags: {
        string: "string",
    },
    trace: {
        connectionString: "string",
        sampleRate: 0,
    },
    zoneRedundant: false,
});
type: azure:appplatform:SpringCloudService
properties:
    buildAgentPoolSize: string
    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
    containerRegistries:
        - name: string
          password: string
          server: string
          username: string
    defaultBuildService:
        containerRegistryName: string
    location: string
    logStreamPublicEndpointEnabled: false
    managedEnvironmentId: string
    marketplace:
        plan: string
        product: string
        publisher: string
    name: string
    network:
        appNetworkResourceGroup: string
        appSubnetId: string
        cidrRanges:
            - string
        outboundType: string
        readTimeoutSeconds: 0
        serviceRuntimeNetworkResourceGroup: string
        serviceRuntimeSubnetId: string
    resourceGroupName: string
    serviceRegistryEnabled: false
    skuName: string
    skuTier: string
    tags:
        string: string
    trace:
        connectionString: string
        sampleRate: 0
    zoneRedundant: false
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:
- ResourceGroup 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.
- BuildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- ConfigServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- ContainerRegistries List<SpringCloud Service Container Registry> 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- DefaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- LogStream boolPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- ManagedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- Marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- ServiceRegistry boolEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- SkuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- SkuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
SpringCloud Service Trace 
- A traceblock as defined below.
- ZoneRedundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- ResourceGroup 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.
- BuildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- ConfigServer SpringGit Setting Cloud Service Config Server Git Setting Args 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- ContainerRegistries []SpringCloud Service Container Registry Args 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- DefaultBuild SpringService Cloud Service Default Build Service Args 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- LogStream boolPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- ManagedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- Marketplace
SpringCloud Service Marketplace Args 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
SpringCloud Service Network Args 
- A networkblock as defined below. Changing this forces a new resource to be created.
- ServiceRegistry boolEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- SkuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- SkuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Trace
SpringCloud Service Trace Args 
- A traceblock as defined below.
- ZoneRedundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- resourceGroup 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.
- buildAgent StringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries List<SpringCloud Service Container Registry> 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream BooleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment StringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- serviceRegistry BooleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- skuName String
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier String
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace 
- A traceblock as defined below.
- zoneRedundant Boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- resourceGroup 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.
- buildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries SpringCloud Service Container Registry[] 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream booleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- serviceRegistry booleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- skuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace 
- A traceblock as defined below.
- zoneRedundant boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- 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.
- build_agent_ strpool_ size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- config_server_ Springgit_ setting Cloud Service Config Server Git Setting Args 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- container_registries Sequence[SpringCloud Service Container Registry Args] 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- default_build_ Springservice Cloud Service Default Build Service Args 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- log_stream_ boolpublic_ endpoint_ enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managed_environment_ strid 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace Args 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud Service Network Args 
- A networkblock as defined below. Changing this forces a new resource to be created.
- service_registry_ boolenabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- sku_name str
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- sku_tier str
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace Args 
- A traceblock as defined below.
- zone_redundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- resourceGroup 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.
- buildAgent StringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer Property MapGit Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries List<Property Map>
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild Property MapService 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream BooleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment StringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace Property Map
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- 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.
- serviceRegistry BooleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- skuName String
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier String
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- trace Property Map
- A traceblock as defined below.
- zoneRedundant Boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
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.
- OutboundPublic List<string>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- RequiredNetwork List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> 
- A list of required_network_traffic_rulesblocks as defined below.
- ServiceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- Id string
- The provider-assigned unique ID for this managed resource.
- OutboundPublic []stringIp Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- RequiredNetwork []SpringTraffic Rules Cloud Service Required Network Traffic Rule 
- A list of required_network_traffic_rulesblocks as defined below.
- ServiceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- id String
- The provider-assigned unique ID for this managed resource.
- outboundPublic List<String>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> 
- A list of required_network_traffic_rulesblocks as defined below.
- serviceRegistry StringId 
- The ID of the Spring Cloud Service Registry.
- id string
- The provider-assigned unique ID for this managed resource.
- outboundPublic string[]Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork SpringTraffic Rules Cloud Service Required Network Traffic Rule[] 
- A list of required_network_traffic_rulesblocks as defined below.
- serviceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- 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.
- service_registry_ strid 
- The ID of the Spring Cloud Service Registry.
- id String
- The provider-assigned unique ID for this managed resource.
- outboundPublic List<String>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork List<Property Map>Traffic Rules 
- A list of required_network_traffic_rulesblocks as defined below.
- serviceRegistry StringId 
- The ID of the Spring Cloud Service Registry.
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,
        build_agent_pool_size: Optional[str] = None,
        config_server_git_setting: Optional[SpringCloudServiceConfigServerGitSettingArgs] = None,
        container_registries: Optional[Sequence[SpringCloudServiceContainerRegistryArgs]] = None,
        default_build_service: Optional[SpringCloudServiceDefaultBuildServiceArgs] = None,
        location: Optional[str] = None,
        log_stream_public_endpoint_enabled: Optional[bool] = None,
        managed_environment_id: Optional[str] = None,
        marketplace: Optional[SpringCloudServiceMarketplaceArgs] = 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,
        service_registry_enabled: Optional[bool] = None,
        service_registry_id: Optional[str] = None,
        sku_name: Optional[str] = None,
        sku_tier: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        trace: Optional[SpringCloudServiceTraceArgs] = None,
        zone_redundant: Optional[bool] = 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.
- BuildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- ConfigServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- ContainerRegistries List<SpringCloud Service Container Registry> 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- DefaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- LogStream boolPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- ManagedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- Marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- OutboundPublic List<string>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- RequiredNetwork List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> 
- A list of required_network_traffic_rulesblocks as defined below.
- ResourceGroup 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.
- ServiceRegistry boolEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- ServiceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- SkuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- SkuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
SpringCloud Service Trace 
- A traceblock as defined below.
- ZoneRedundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- BuildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- ConfigServer SpringGit Setting Cloud Service Config Server Git Setting Args 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- ContainerRegistries []SpringCloud Service Container Registry Args 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- DefaultBuild SpringService Cloud Service Default Build Service Args 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- LogStream boolPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- ManagedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- Marketplace
SpringCloud Service Marketplace Args 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
SpringCloud Service Network Args 
- A networkblock as defined below. Changing this forces a new resource to be created.
- OutboundPublic []stringIp Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- RequiredNetwork []SpringTraffic Rules Cloud Service Required Network Traffic Rule Args 
- A list of required_network_traffic_rulesblocks as defined below.
- ResourceGroup 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.
- ServiceRegistry boolEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- ServiceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- SkuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- SkuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Trace
SpringCloud Service Trace Args 
- A traceblock as defined below.
- ZoneRedundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- buildAgent StringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries List<SpringCloud Service Container Registry> 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream BooleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment StringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- outboundPublic List<String>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> 
- A list of required_network_traffic_rulesblocks as defined below.
- resourceGroup 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.
- serviceRegistry BooleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- serviceRegistry StringId 
- The ID of the Spring Cloud Service Registry.
- skuName String
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier String
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace 
- A traceblock as defined below.
- zoneRedundant Boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- buildAgent stringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer SpringGit Setting Cloud Service Config Server Git Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries SpringCloud Service Container Registry[] 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild SpringService Cloud Service Default Build Service 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream booleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment stringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud Service Network 
- A networkblock as defined below. Changing this forces a new resource to be created.
- outboundPublic string[]Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork SpringTraffic Rules Cloud Service Required Network Traffic Rule[] 
- A list of required_network_traffic_rulesblocks as defined below.
- resourceGroup 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.
- serviceRegistry booleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- serviceRegistry stringId 
- The ID of the Spring Cloud Service Registry.
- skuName string
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier string
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace 
- A traceblock as defined below.
- zoneRedundant boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- build_agent_ strpool_ size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- config_server_ Springgit_ setting Cloud Service Config Server Git Setting Args 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- container_registries Sequence[SpringCloud Service Container Registry Args] 
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- default_build_ Springservice Cloud Service Default Build Service Args 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- log_stream_ boolpublic_ endpoint_ enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managed_environment_ strid 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace
SpringCloud Service Marketplace Args 
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
SpringCloud 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.
- service_registry_ boolenabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- service_registry_ strid 
- The ID of the Spring Cloud Service Registry.
- sku_name str
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- sku_tier str
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
SpringCloud Service Trace Args 
- A traceblock as defined below.
- zone_redundant bool
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
- buildAgent StringPool Size 
- Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are S1,S2,S3,S4andS5. This field is applicable only for Spring Cloud Service with enterprise tier.
- configServer Property MapGit Setting 
- A config_server_git_settingblock as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier.
- containerRegistries List<Property Map>
- One or more container_registryblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- defaultBuild Property MapService 
- A default_build_serviceblock as defined below. This field is applicable only for Spring Cloud Service with enterprise tier.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- logStream BooleanPublic Endpoint Enabled 
- Should the log stream in vnet injection instance could be accessed from Internet?
- managedEnvironment StringId 
- The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when sku_tieris set toStandardGen2.
- marketplace Property Map
- A marketplaceblock as defined below. Can only be specified whenskuis set toE0.
- 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.
- outboundPublic List<String>Ip Addresses 
- A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- requiredNetwork List<Property Map>Traffic Rules 
- A list of required_network_traffic_rulesblocks as defined below.
- resourceGroup 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.
- serviceRegistry BooleanEnabled 
- Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- serviceRegistry StringId 
- The ID of the Spring Cloud Service Registry.
- skuName String
- Specifies the SKU Name for this Spring Cloud Service. Possible values are B0,S0andE0. Defaults toS0. Changing this forces a new resource to be created.
- skuTier String
- Specifies the SKU Tier for this Spring Cloud Service. Possible values are Basic,Enterprise,StandardandStandardGen2. The attribute is automatically computed from API response except whenmanaged_environment_idis defined. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- trace Property Map
- A traceblock as defined below.
- zoneRedundant Boolean
- Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to false.
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://.
- HttpBasic 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<SpringCloud Service Config Server Git Setting Repository> 
- One or more repositoryblocks as defined below.
- SearchPaths List<string>
- An array of strings used to search subdirectories of the Git repository.
- SshAuth 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://.
- HttpBasic 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
[]SpringCloud Service Config Server Git Setting Repository 
- One or more repositoryblocks as defined below.
- SearchPaths []string
- An array of strings used to search subdirectories of the Git repository.
- SshAuth 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://.
- httpBasic 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<SpringCloud Service Config Server Git Setting Repository> 
- One or more repositoryblocks as defined below.
- searchPaths List<String>
- An array of strings used to search subdirectories of the Git repository.
- sshAuth 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://.
- httpBasic 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
SpringCloud Service Config Server Git Setting Repository[] 
- One or more repositoryblocks as defined below.
- searchPaths string[]
- An array of strings used to search subdirectories of the Git repository.
- sshAuth 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[SpringCloud 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://.
- httpBasic 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.
- searchPaths List<String>
- An array of strings used to search subdirectories of the Git repository.
- sshAuth 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://.
- HttpBasic 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.
- SearchPaths List<string>
- An array of strings used to search subdirectories of the Git repository.
- SshAuth 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://.
- HttpBasic 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.
- SearchPaths []string
- An array of strings used to search subdirectories of the Git repository.
- SshAuth 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://.
- httpBasic 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.
- searchPaths List<String>
- An array of strings used to search subdirectories of the Git repository.
- sshAuth 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://.
- httpBasic 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.
- searchPaths string[]
- An array of strings used to search subdirectories of the Git repository.
- sshAuth 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://.
- httpBasic 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.
- searchPaths List<String>
- An array of strings used to search subdirectories of the Git repository.
- sshAuth Property Map
- A ssh_authblock as defined below.
SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth, SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs                      
SpringCloudServiceConfigServerGitSettingRepositorySshAuth, SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs                    
- PrivateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- HostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- HostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- StrictHost boolKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- PrivateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- HostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- HostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- StrictHost boolKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- privateKey String
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey String
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey StringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost BooleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- privateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost booleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- 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. Defaults to true.
- privateKey String
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey String
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey StringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost BooleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
SpringCloudServiceConfigServerGitSettingSshAuth, SpringCloudServiceConfigServerGitSettingSshAuthArgs                  
- PrivateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- HostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- HostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- StrictHost boolKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- PrivateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- HostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- HostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- StrictHost boolKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- privateKey String
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey String
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey StringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost BooleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- privateKey string
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey string
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey stringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost booleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
- 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. Defaults to true.
- privateKey String
- The SSH private key to access the Git repository, required when the URI starts with git@orssh://.
- hostKey String
- The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.
- hostKey StringAlgorithm 
- The host key algorithm, should be ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384, orecdsa-sha2-nistp521. Required only ifhost-keyexists.
- strictHost BooleanKey Checking Enabled 
- Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.
SpringCloudServiceContainerRegistry, SpringCloudServiceContainerRegistryArgs          
SpringCloudServiceDefaultBuildService, SpringCloudServiceDefaultBuildServiceArgs            
- ContainerRegistry stringName 
- Specifies the name of the container registry used in the default build service.
- ContainerRegistry stringName 
- Specifies the name of the container registry used in the default build service.
- containerRegistry StringName 
- Specifies the name of the container registry used in the default build service.
- containerRegistry stringName 
- Specifies the name of the container registry used in the default build service.
- container_registry_ strname 
- Specifies the name of the container registry used in the default build service.
- containerRegistry StringName 
- Specifies the name of the container registry used in the default build service.
SpringCloudServiceMarketplace, SpringCloudServiceMarketplaceArgs        
SpringCloudServiceNetwork, SpringCloudServiceNetworkArgs        
- AppSubnet 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.
- 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.
- ServiceRuntime 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.
- AppNetwork 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.
- OutboundType string
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- ReadTimeout intSeconds 
- Ingress read time out in seconds.
- ServiceRuntime 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.
- AppSubnet 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.
- 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.
- ServiceRuntime 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.
- AppNetwork 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.
- OutboundType string
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- ReadTimeout intSeconds 
- Ingress read time out in seconds.
- ServiceRuntime 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.
- appSubnet 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.
- 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.
- serviceRuntime 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.
- appNetwork 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.
- outboundType String
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- readTimeout IntegerSeconds 
- Ingress read time out in seconds.
- serviceRuntime 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.
- appSubnet 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.
- 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.
- serviceRuntime 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.
- appNetwork 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.
- outboundType string
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- readTimeout numberSeconds 
- Ingress read time out in seconds.
- serviceRuntime 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.
- outbound_type str
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- read_timeout_ intseconds 
- Ingress read time out in seconds.
- 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.
- appSubnet 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.
- 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.
- serviceRuntime 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.
- appNetwork 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.
- outboundType String
- Specifies the egress traffic type of the Spring Cloud Service. Possible values are loadBalanceranduserDefinedRouting. Defaults toloadBalancer. Changing this forces a new resource to be created.
- readTimeout NumberSeconds 
- Ingress read time out in seconds.
- serviceRuntime 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.
- IpAddresses List<string>
- The IP list of required traffic.
- 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
- The IP list of required traffic.
- 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>
- The IP list of required traffic.
- 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[]
- The IP list of required traffic.
- 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]
- The IP list of required traffic.
- 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>
- The IP list of required traffic.
- 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.
- SampleRate double
- The sampling rate of Application Insights Agent. Must be between 0.0and100.0. Defaults to10.0.
- ConnectionString string
- The connection string used for Application Insights.
- SampleRate float64
- The sampling rate of Application Insights Agent. Must be between 0.0and100.0. Defaults to10.0.
- connectionString String
- The connection string used for Application Insights.
- sampleRate Double
- The sampling rate of Application Insights Agent. Must be between 0.0and100.0. Defaults to10.0.
- connectionString string
- The connection string used for Application Insights.
- sampleRate 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.
- sample_rate float
- The sampling rate of Application Insights Agent. Must be between 0.0and100.0. Defaults to10.0.
- connectionString String
- The connection string used for Application Insights.
- sampleRate 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.