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={
"containerRegistryName": "string",
},
location="string",
network={
"appSubnetId": "string",
"cidrRanges": ["string"],
"serviceRuntimeSubnetId": "string",
"appNetworkResourceGroup": "string",
"outboundType": "string",
"readTimeoutSeconds": 0,
"serviceRuntimeNetworkResourceGroup": "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",
"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,
},
},
service_registry_enabled=False,
sku_name="string",
sku_tier="string",
tags={
"string": "string",
},
trace={
"connectionString": "string",
"sampleRate": 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
The SpringCloudService resource accepts the following input properties:
- Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - Config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - Container
Registries List<SpringCloud Service Container Registry> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - Default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- Log
Stream boolPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- Managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - Marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network - A
network
block 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 string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - Sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace - A
trace
block as defined below. - Zone
Redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. 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_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - Container
Registries []SpringCloud Service Container Registry Args - One or more
container_registry
block 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_service
block 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.
- Log
Stream boolPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- Managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - Marketplace
Spring
Cloud Service Marketplace Args - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network Args - A
network
block 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 string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - Sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace Args - A
trace
block as defined below. - Zone
Redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- build
Agent StringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries List<SpringCloud Service Container Registry> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- log
Stream BooleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment StringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
network
block as defined below. Changing this forces a new resource to be created. - service
Registry BooleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier String - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
trace
block as defined below. - zone
Redundant Boolean - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries SpringCloud Service Container Registry[] - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- log
Stream booleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
network
block as defined below. Changing this forces a new resource to be created. - service
Registry booleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
trace
block as defined below. - zone
Redundant 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
,S4
andS5
. 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_setting
block 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_registry
block 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_service
block 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_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace Args - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network Args - A
network
block 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
,S0
andE0
. 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
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace Args - A
trace
block as defined below. - zone_
redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- build
Agent StringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server Property MapGit Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries List<Property Map> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build Property MapService - A
default_build_service
block 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.
- log
Stream BooleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment StringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace Property Map
- A
marketplace
block as defined below. Can only be specified whensku
is 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
network
block as defined below. Changing this forces a new resource to be created. - service
Registry BooleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier String - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is 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
trace
block as defined below. - zone
Redundant 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.
- Outbound
Public List<string>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rules
blocks as defined below. - Service
Registry stringId - The ID of the Spring Cloud Service Registry.
- Id string
- The provider-assigned unique ID for this managed resource.
- Outbound
Public []stringIp Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network []SpringTraffic Rules Cloud Service Required Network Traffic Rule - A list of
required_network_traffic_rules
blocks as defined below. - Service
Registry stringId - The ID of the Spring Cloud Service Registry.
- id String
- The provider-assigned unique ID for this managed resource.
- outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rules
blocks as defined below. - service
Registry StringId - The ID of the Spring Cloud Service Registry.
- id string
- The provider-assigned unique ID for this managed resource.
- outbound
Public string[]Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network SpringTraffic Rules Cloud Service Required Network Traffic Rule[] - A list of
required_network_traffic_rules
blocks as defined below. - service
Registry 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_rules
blocks 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.
- outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<Property Map>Traffic Rules - A list of
required_network_traffic_rules
blocks as defined below. - service
Registry 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) -> SpringCloudService
func GetSpringCloudService(ctx *Context, name string, id IDInput, state *SpringCloudServiceState, opts ...ResourceOption) (*SpringCloudService, error)
public static SpringCloudService Get(string name, Input<string> id, SpringCloudServiceState? state, CustomResourceOptions? opts = null)
public static SpringCloudService get(String name, Output<String> id, SpringCloudServiceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - Config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - Container
Registries List<SpringCloud Service Container Registry> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - Default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- Log
Stream boolPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- Managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - Marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network - A
network
block as defined below. Changing this forces a new resource to be created. - Outbound
Public List<string>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rules
blocks as defined below. - Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Service
Registry boolEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- Service
Registry stringId - The ID of the Spring Cloud Service Registry.
- Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - Sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace - A
trace
block as defined below. - Zone
Redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- Build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. 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_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - Container
Registries []SpringCloud Service Container Registry Args - One or more
container_registry
block 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_service
block 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.
- Log
Stream boolPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- Managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - Marketplace
Spring
Cloud Service Marketplace Args - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - Name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- Network
Spring
Cloud Service Network Args - A
network
block as defined below. Changing this forces a new resource to be created. - Outbound
Public []stringIp Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- Required
Network []SpringTraffic Rules Cloud Service Required Network Traffic Rule Args - A list of
required_network_traffic_rules
blocks as defined below. - Resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- Service
Registry boolEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- Service
Registry stringId - The ID of the Spring Cloud Service Registry.
- Sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - Sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- Trace
Spring
Cloud Service Trace Args - A
trace
block as defined below. - Zone
Redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- build
Agent StringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries List<SpringCloud Service Container Registry> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- log
Stream BooleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment StringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name String
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
network
block as defined below. Changing this forces a new resource to be created. - outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<SpringTraffic Rules Cloud Service Required Network Traffic Rule> - A list of
required_network_traffic_rules
blocks as defined below. - resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- service
Registry BooleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- service
Registry StringId - The ID of the Spring Cloud Service Registry.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier String - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
trace
block as defined below. - zone
Redundant Boolean - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- build
Agent stringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server SpringGit Setting Cloud Service Config Server Git Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries SpringCloud Service Container Registry[] - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build SpringService Cloud Service Default Build Service - A
default_build_service
block 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.
- log
Stream booleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment stringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name string
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network - A
network
block as defined below. Changing this forces a new resource to be created. - outbound
Public string[]Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network SpringTraffic Rules Cloud Service Required Network Traffic Rule[] - A list of
required_network_traffic_rules
blocks as defined below. - resource
Group stringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- service
Registry booleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- service
Registry stringId - The ID of the Spring Cloud Service Registry.
- sku
Name string - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier string - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace - A
trace
block as defined below. - zone
Redundant 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
,S4
andS5
. 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_setting
block 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_registry
block 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_service
block 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_tier
is set toStandardGen2
. - marketplace
Spring
Cloud Service Marketplace Args - A
marketplace
block as defined below. Can only be specified whensku
is set toE0
. - name str
- Specifies the name of the Spring Cloud Service resource. Changing this forces a new resource to be created.
- network
Spring
Cloud Service Network Args - A
network
block 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_rules
blocks 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
,S0
andE0
. 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
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is defined. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- trace
Spring
Cloud Service Trace Args - A
trace
block as defined below. - zone_
redundant bool - Whether zone redundancy is enabled for this Spring Cloud Service. Defaults to
false
.
- build
Agent StringPool Size - Specifies the size for this Spring Cloud Service's default build agent pool. Possible values are
S1
,S2
,S3
,S4
andS5
. This field is applicable only for Spring Cloud Service with enterprise tier. - config
Server Property MapGit Setting - A
config_server_git_setting
block as defined below. This field is applicable only for Spring Cloud Service with basic and standard tier. - container
Registries List<Property Map> - One or more
container_registry
block as defined below. This field is applicable only for Spring Cloud Service with enterprise tier. - default
Build Property MapService - A
default_build_service
block 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.
- log
Stream BooleanPublic Endpoint Enabled - Should the log stream in vnet injection instance could be accessed from Internet?
- managed
Environment StringId - The resource Id of the Managed Environment that the Spring Apps instance builds on. Can only be specified when
sku_tier
is set toStandardGen2
. - marketplace Property Map
- A
marketplace
block as defined below. Can only be specified whensku
is 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
network
block as defined below. Changing this forces a new resource to be created. - outbound
Public List<String>Ip Addresses - A list of the outbound Public IP Addresses used by this Spring Cloud Service.
- required
Network List<Property Map>Traffic Rules - A list of
required_network_traffic_rules
blocks as defined below. - resource
Group StringName - Specifies The name of the resource group in which to create the Spring Cloud Service. Changing this forces a new resource to be created.
- service
Registry BooleanEnabled - Whether enable the default Service Registry. This field is applicable only for Spring Cloud Service with enterprise tier.
- service
Registry StringId - The ID of the Spring Cloud Service Registry.
- sku
Name String - Specifies the SKU Name for this Spring Cloud Service. Possible values are
B0
,S0
andE0
. Defaults toS0
. Changing this forces a new resource to be created. - sku
Tier String - Specifies the SKU Tier for this Spring Cloud Service. Possible values are
Basic
,Enterprise
,Standard
andStandardGen2
. The attribute is automatically computed from API response except whenmanaged_environment_id
is 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
trace
block as defined below. - zone
Redundant 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://
. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_auth
block as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Repositories
List<Spring
Cloud Service Config Server Git Setting Repository> - One or more
repository
blocks as defined below. - Search
Paths List<string> - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_auth
block as defined below.
- Uri string
- The URI of the default Git repository used as the Config Server back end, should be started with
http://
,https://
,git@
, orssh://
. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_auth
block as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Repositories
[]Spring
Cloud Service Config Server Git Setting Repository - One or more
repository
blocks as defined below. - Search
Paths []string - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_auth
block as defined below.
- uri String
- The URI of the default Git repository used as the Config Server back end, should be started with
http://
,https://
,git@
, orssh://
. - http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_auth
block as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
List<Spring
Cloud Service Config Server Git Setting Repository> - One or more
repository
blocks as defined below. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_auth
block as defined below.
- uri string
- The URI of the default Git repository used as the Config Server back end, should be started with
http://
,https://
,git@
, orssh://
. - http
Basic SpringAuth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_auth
block as defined below. - label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
Spring
Cloud Service Config Server Git Setting Repository[] - One or more
repository
blocks as defined below. - search
Paths string[] - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_auth
block as defined below.
- uri str
- The URI of the default Git repository used as the Config Server back end, should be started with
http://
,https://
,git@
, orssh://
. - http_
basic_ Springauth Cloud Service Config Server Git Setting Http Basic Auth - A
http_basic_auth
block as defined below. - label str
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories
Sequence[Spring
Cloud Service Config Server Git Setting Repository] - One or more
repository
blocks as defined below. - search_
paths Sequence[str] - An array of strings used to search subdirectories of the Git repository.
- ssh_
auth SpringCloud Service Config Server Git Setting Ssh Auth - A
ssh_auth
block as defined below.
- uri String
- The URI of the default Git repository used as the Config Server back end, should be started with
http://
,https://
,git@
, orssh://
. - http
Basic Property MapAuth - A
http_basic_auth
block as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- repositories List<Property Map>
- One or more
repository
blocks as defined below. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth Property Map - A
ssh_auth
block as defined below.
SpringCloudServiceConfigServerGitSettingHttpBasicAuth, SpringCloudServiceConfigServerGitSettingHttpBasicAuthArgs
SpringCloudServiceConfigServerGitSettingRepository, SpringCloudServiceConfigServerGitSettingRepositoryArgs
- Name string
- A name to identify on the Git repository, required only if repos exists.
- Uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_auth
block as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Patterns List<string>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - Search
Paths List<string> - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_auth
block as defined below.
- Name string
- A name to identify on the Git repository, required only if repos exists.
- Uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - Http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_auth
block as defined below. - Label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- Patterns []string
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - Search
Paths []string - An array of strings used to search subdirectories of the Git repository.
- Ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_auth
block as defined below.
- name String
- A name to identify on the Git repository, required only if repos exists.
- uri String
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_auth
block as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns List<String>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_auth
block as defined below.
- name string
- A name to identify on the Git repository, required only if repos exists.
- uri string
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - http
Basic SpringAuth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_auth
block as defined below. - label string
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns string[]
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - search
Paths string[] - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_auth
block as defined below.
- name str
- A name to identify on the Git repository, required only if repos exists.
- uri str
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - http_
basic_ Springauth Cloud Service Config Server Git Setting Repository Http Basic Auth - A
http_basic_auth
block as defined below. - label str
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns Sequence[str]
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - search_
paths Sequence[str] - An array of strings used to search subdirectories of the Git repository.
- ssh_
auth SpringCloud Service Config Server Git Setting Repository Ssh Auth - A
ssh_auth
block as defined below.
- name String
- A name to identify on the Git repository, required only if repos exists.
- uri String
- The URI of the Git repository that's used as the Config Server back end should be started with
http://
,https://
,git@
, orssh://
. - http
Basic Property MapAuth - A
http_basic_auth
block as defined below. - label String
- The default label of the Git repository, should be the branch name, tag name, or commit-id of the repository.
- patterns List<String>
- An array of strings used to match an application name. For each pattern, use the
{application}/{profile}
format with wildcards. - search
Paths List<String> - An array of strings used to search subdirectories of the Git repository.
- ssh
Auth Property Map - A
ssh_auth
block as defined below.
SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuth, SpringCloudServiceConfigServerGitSettingRepositoryHttpBasicAuthArgs
SpringCloudServiceConfigServerGitSettingRepositorySshAuth, SpringCloudServiceConfigServerGitSettingRepositorySshAuthArgs
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - 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
.
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - 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
.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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 string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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-key
exists. - 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
.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - 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
.
- Private
Key string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - Host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - Host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - 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
.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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 string - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key string - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key stringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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-key
exists. - 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
.
- private
Key String - The SSH private key to access the Git repository, required when the URI starts with
git@
orssh://
. - host
Key String - The host key of the Git repository server, should not include the algorithm prefix as covered by
host-key-algorithm
. - host
Key StringAlgorithm - The host key algorithm, should be
ssh-dss
,ssh-rsa
,ecdsa-sha2-nistp256
,ecdsa-sha2-nistp384
, orecdsa-sha2-nistp521
. Required only ifhost-key
exists. - strict
Host 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
- Container
Registry stringName - Specifies the name of the container registry used in the default build service.
- Container
Registry stringName - Specifies the name of the container registry used in the default build service.
- container
Registry StringName - Specifies the name of the container registry used in the default build service.
- container
Registry 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.
- container
Registry StringName - Specifies the name of the container registry used in the default build service.
SpringCloudServiceMarketplace, SpringCloudServiceMarketplaceArgs
SpringCloudServiceNetwork, SpringCloudServiceNetworkArgs
- App
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- Cidr
Ranges List<string> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- Service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- App
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- Outbound
Type string - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. Defaults toloadBalancer
. Changing this forces a new resource to be created. - Read
Timeout intSeconds - Ingress read time out in seconds.
- Service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- App
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- Cidr
Ranges []string - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- Service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- App
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- Outbound
Type string - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. Defaults toloadBalancer
. Changing this forces a new resource to be created. - Read
Timeout intSeconds - Ingress read time out in seconds.
- Service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app
Subnet StringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges List<String> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime StringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network StringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- outbound
Type String - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. Defaults toloadBalancer
. Changing this forces a new resource to be created. - read
Timeout IntegerSeconds - Ingress read time out in seconds.
- service
Runtime StringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app
Subnet stringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges string[] - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime stringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network stringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- outbound
Type string - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. Defaults toloadBalancer
. Changing this forces a new resource to be created. - read
Timeout numberSeconds - Ingress read time out in seconds.
- service
Runtime stringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
- app_
subnet_ strid - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr_
ranges Sequence[str] - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service_
runtime_ strsubnet_ id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app_
network_ strresource_ group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- outbound_
type str - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. 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.
- app
Subnet StringId - Specifies the ID of the Subnet which should host the Spring Boot Applications deployed in this Spring Cloud Service. Changing this forces a new resource to be created.
- cidr
Ranges List<String> - A list of (at least 3) CIDR ranges (at least /16) which are used to host the Spring Cloud infrastructure, which must not overlap with any existing CIDR ranges in the Subnet. Changing this forces a new resource to be created.
- service
Runtime StringSubnet Id - Specifies the ID of the Subnet where the Service Runtime components of the Spring Cloud Service will exist. Changing this forces a new resource to be created.
- app
Network StringResource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Apps. Changing this forces a new resource to be created.
- outbound
Type String - Specifies the egress traffic type of the Spring Cloud Service. Possible values are
loadBalancer
anduserDefinedRouting
. Defaults toloadBalancer
. Changing this forces a new resource to be created. - read
Timeout NumberSeconds - Ingress read time out in seconds.
- service
Runtime StringNetwork Resource Group - Specifies the Name of the resource group containing network resources of Azure Spring Cloud Service Runtime. Changing this forces a new resource to be created.
SpringCloudServiceRequiredNetworkTrafficRule, SpringCloudServiceRequiredNetworkTrafficRuleArgs
- Direction string
- The direction of required traffic. Possible values are
Inbound
,Outbound
. - Fqdns List<string>
- The FQDN list of required traffic.
- Ip
Addresses List<string> - 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.
- Ip
Addresses []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.
- ip
Addresses 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.
- ip
Addresses 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.
- ip
Addresses List<String> - The IP list of required traffic.
- port Number
- The port of required traffic.
- protocol String
- The protocol of required traffic.
SpringCloudServiceTrace, SpringCloudServiceTraceArgs
- Connection
String string - The connection string used for Application Insights.
- Sample
Rate double - The sampling rate of Application Insights Agent. Must be between
0.0
and100.0
. Defaults to10.0
.
- Connection
String string - The connection string used for Application Insights.
- Sample
Rate float64 - The sampling rate of Application Insights Agent. Must be between
0.0
and100.0
. Defaults to10.0
.
- connection
String String - The connection string used for Application Insights.
- sample
Rate Double - The sampling rate of Application Insights Agent. Must be between
0.0
and100.0
. Defaults to10.0
.
- connection
String string - The connection string used for Application Insights.
- sample
Rate number - The sampling rate of Application Insights Agent. Must be between
0.0
and100.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.0
and100.0
. Defaults to10.0
.
- connection
String String - The connection string used for Application Insights.
- sample
Rate Number - The sampling rate of Application Insights Agent. Must be between
0.0
and100.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
azurerm
Terraform Provider.