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

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

azure.appplatform.SpringCloudDevToolPortal

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

    NOTE: This resource is applicable only for Spring Cloud Service with enterprise tier.

    Manages a Spring Cloud Dev Tool Portal.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const current = azure.core.getClientConfig({});
    const example = new azure.core.ResourceGroup("example", {
        name: "example",
        location: "West Europe",
    });
    const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", {
        name: "example",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "E0",
    });
    const exampleSpringCloudDevToolPortal = new azure.appplatform.SpringCloudDevToolPortal("example", {
        name: "default",
        springCloudServiceId: exampleSpringCloudService.id,
        publicNetworkAccessEnabled: true,
        sso: {
            clientId: "example id",
            clientSecret: "example secret",
            metadataUrl: current.then(current => `https://login.microsoftonline.com/${current.tenantId}/v2.0/.well-known/openid-configuration`),
            scopes: [
                "openid",
                "profile",
                "email",
            ],
        },
        applicationAcceleratorEnabled: true,
        applicationLiveViewEnabled: true,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    current = azure.core.get_client_config()
    example = azure.core.ResourceGroup("example",
        name="example",
        location="West Europe")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("example",
        name="example",
        location=example.location,
        resource_group_name=example.name,
        sku_name="E0")
    example_spring_cloud_dev_tool_portal = azure.appplatform.SpringCloudDevToolPortal("example",
        name="default",
        spring_cloud_service_id=example_spring_cloud_service.id,
        public_network_access_enabled=True,
        sso=azure.appplatform.SpringCloudDevToolPortalSsoArgs(
            client_id="example id",
            client_secret="example secret",
            metadata_url=f"https://login.microsoftonline.com/{current.tenant_id}/v2.0/.well-known/openid-configuration",
            scopes=[
                "openid",
                "profile",
                "email",
            ],
        ),
        application_accelerator_enabled=True,
        application_live_view_enabled=True)
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		current, err := core.GetClientConfig(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "example", &appplatform.SpringCloudServiceArgs{
    			Name:              pulumi.String("example"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			SkuName:           pulumi.String("E0"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudDevToolPortal(ctx, "example", &appplatform.SpringCloudDevToolPortalArgs{
    			Name:                       pulumi.String("default"),
    			SpringCloudServiceId:       exampleSpringCloudService.ID(),
    			PublicNetworkAccessEnabled: pulumi.Bool(true),
    			Sso: &appplatform.SpringCloudDevToolPortalSsoArgs{
    				ClientId:     pulumi.String("example id"),
    				ClientSecret: pulumi.String("example secret"),
    				MetadataUrl:  pulumi.String(fmt.Sprintf("https://login.microsoftonline.com/%v/v2.0/.well-known/openid-configuration", current.TenantId)),
    				Scopes: pulumi.StringArray{
    					pulumi.String("openid"),
    					pulumi.String("profile"),
    					pulumi.String("email"),
    				},
    			},
    			ApplicationAcceleratorEnabled: pulumi.Bool(true),
    			ApplicationLiveViewEnabled:    pulumi.Bool(true),
    		})
    		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 current = Azure.Core.GetClientConfig.Invoke();
    
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example",
            Location = "West Europe",
        });
    
        var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("example", new()
        {
            Name = "example",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "E0",
        });
    
        var exampleSpringCloudDevToolPortal = new Azure.AppPlatform.SpringCloudDevToolPortal("example", new()
        {
            Name = "default",
            SpringCloudServiceId = exampleSpringCloudService.Id,
            PublicNetworkAccessEnabled = true,
            Sso = new Azure.AppPlatform.Inputs.SpringCloudDevToolPortalSsoArgs
            {
                ClientId = "example id",
                ClientSecret = "example secret",
                MetadataUrl = $"https://login.microsoftonline.com/{current.Apply(getClientConfigResult => getClientConfigResult.TenantId)}/v2.0/.well-known/openid-configuration",
                Scopes = new[]
                {
                    "openid",
                    "profile",
                    "email",
                },
            },
            ApplicationAcceleratorEnabled = true,
            ApplicationLiveViewEnabled = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.CoreFunctions;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.appplatform.SpringCloudService;
    import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
    import com.pulumi.azure.appplatform.SpringCloudDevToolPortal;
    import com.pulumi.azure.appplatform.SpringCloudDevToolPortalArgs;
    import com.pulumi.azure.appplatform.inputs.SpringCloudDevToolPortalSsoArgs;
    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) {
            final var current = CoreFunctions.getClientConfig();
    
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example")
                .location("West Europe")
                .build());
    
            var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .name("example")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("E0")
                .build());
    
            var exampleSpringCloudDevToolPortal = new SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal", SpringCloudDevToolPortalArgs.builder()        
                .name("default")
                .springCloudServiceId(exampleSpringCloudService.id())
                .publicNetworkAccessEnabled(true)
                .sso(SpringCloudDevToolPortalSsoArgs.builder()
                    .clientId("example id")
                    .clientSecret("example secret")
                    .metadataUrl(String.format("https://login.microsoftonline.com/%s/v2.0/.well-known/openid-configuration", current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId())))
                    .scopes(                
                        "openid",
                        "profile",
                        "email")
                    .build())
                .applicationAcceleratorEnabled(true)
                .applicationLiveViewEnabled(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example
          location: West Europe
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        name: example
        properties:
          name: example
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: E0
      exampleSpringCloudDevToolPortal:
        type: azure:appplatform:SpringCloudDevToolPortal
        name: example
        properties:
          name: default
          springCloudServiceId: ${exampleSpringCloudService.id}
          publicNetworkAccessEnabled: true
          sso:
            clientId: example id
            clientSecret: example secret
            metadataUrl: https://login.microsoftonline.com/${current.tenantId}/v2.0/.well-known/openid-configuration
            scopes:
              - openid
              - profile
              - email
          applicationAcceleratorEnabled: true
          applicationLiveViewEnabled: true
    variables:
      current:
        fn::invoke:
          Function: azure:core:getClientConfig
          Arguments: {}
    

    Create SpringCloudDevToolPortal Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SpringCloudDevToolPortal(name: string, args: SpringCloudDevToolPortalArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudDevToolPortal(resource_name: str,
                                 args: SpringCloudDevToolPortalArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SpringCloudDevToolPortal(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 spring_cloud_service_id: Optional[str] = None,
                                 application_accelerator_enabled: Optional[bool] = None,
                                 application_live_view_enabled: Optional[bool] = None,
                                 name: Optional[str] = None,
                                 public_network_access_enabled: Optional[bool] = None,
                                 sso: Optional[SpringCloudDevToolPortalSsoArgs] = None)
    func NewSpringCloudDevToolPortal(ctx *Context, name string, args SpringCloudDevToolPortalArgs, opts ...ResourceOption) (*SpringCloudDevToolPortal, error)
    public SpringCloudDevToolPortal(string name, SpringCloudDevToolPortalArgs args, CustomResourceOptions? opts = null)
    public SpringCloudDevToolPortal(String name, SpringCloudDevToolPortalArgs args)
    public SpringCloudDevToolPortal(String name, SpringCloudDevToolPortalArgs args, CustomResourceOptions options)
    
    type: azure:appplatform:SpringCloudDevToolPortal
    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 SpringCloudDevToolPortalArgs
    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 SpringCloudDevToolPortalArgs
    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 SpringCloudDevToolPortalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SpringCloudDevToolPortalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SpringCloudDevToolPortalArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var springCloudDevToolPortalResource = new Azure.AppPlatform.SpringCloudDevToolPortal("springCloudDevToolPortalResource", new()
    {
        SpringCloudServiceId = "string",
        ApplicationAcceleratorEnabled = false,
        ApplicationLiveViewEnabled = false,
        Name = "string",
        PublicNetworkAccessEnabled = false,
        Sso = new Azure.AppPlatform.Inputs.SpringCloudDevToolPortalSsoArgs
        {
            ClientId = "string",
            ClientSecret = "string",
            MetadataUrl = "string",
            Scopes = new[]
            {
                "string",
            },
        },
    });
    
    example, err := appplatform.NewSpringCloudDevToolPortal(ctx, "springCloudDevToolPortalResource", &appplatform.SpringCloudDevToolPortalArgs{
    	SpringCloudServiceId:          pulumi.String("string"),
    	ApplicationAcceleratorEnabled: pulumi.Bool(false),
    	ApplicationLiveViewEnabled:    pulumi.Bool(false),
    	Name:                          pulumi.String("string"),
    	PublicNetworkAccessEnabled:    pulumi.Bool(false),
    	Sso: &appplatform.SpringCloudDevToolPortalSsoArgs{
    		ClientId:     pulumi.String("string"),
    		ClientSecret: pulumi.String("string"),
    		MetadataUrl:  pulumi.String("string"),
    		Scopes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    })
    
    var springCloudDevToolPortalResource = new SpringCloudDevToolPortal("springCloudDevToolPortalResource", SpringCloudDevToolPortalArgs.builder()        
        .springCloudServiceId("string")
        .applicationAcceleratorEnabled(false)
        .applicationLiveViewEnabled(false)
        .name("string")
        .publicNetworkAccessEnabled(false)
        .sso(SpringCloudDevToolPortalSsoArgs.builder()
            .clientId("string")
            .clientSecret("string")
            .metadataUrl("string")
            .scopes("string")
            .build())
        .build());
    
    spring_cloud_dev_tool_portal_resource = azure.appplatform.SpringCloudDevToolPortal("springCloudDevToolPortalResource",
        spring_cloud_service_id="string",
        application_accelerator_enabled=False,
        application_live_view_enabled=False,
        name="string",
        public_network_access_enabled=False,
        sso=azure.appplatform.SpringCloudDevToolPortalSsoArgs(
            client_id="string",
            client_secret="string",
            metadata_url="string",
            scopes=["string"],
        ))
    
    const springCloudDevToolPortalResource = new azure.appplatform.SpringCloudDevToolPortal("springCloudDevToolPortalResource", {
        springCloudServiceId: "string",
        applicationAcceleratorEnabled: false,
        applicationLiveViewEnabled: false,
        name: "string",
        publicNetworkAccessEnabled: false,
        sso: {
            clientId: "string",
            clientSecret: "string",
            metadataUrl: "string",
            scopes: ["string"],
        },
    });
    
    type: azure:appplatform:SpringCloudDevToolPortal
    properties:
        applicationAcceleratorEnabled: false
        applicationLiveViewEnabled: false
        name: string
        publicNetworkAccessEnabled: false
        springCloudServiceId: string
        sso:
            clientId: string
            clientSecret: string
            metadataUrl: string
            scopes:
                - string
    

    SpringCloudDevToolPortal 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 SpringCloudDevToolPortal resource accepts the following input properties:

    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    ApplicationAcceleratorEnabled bool
    Should the Accelerator plugin be enabled?
    ApplicationLiveViewEnabled bool
    Should the Application Live View be enabled?
    Name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    PublicNetworkAccessEnabled bool
    Is public network access enabled?
    Sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    ApplicationAcceleratorEnabled bool
    Should the Accelerator plugin be enabled?
    ApplicationLiveViewEnabled bool
    Should the Application Live View be enabled?
    Name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    PublicNetworkAccessEnabled bool
    Is public network access enabled?
    Sso SpringCloudDevToolPortalSsoArgs
    A sso block as defined below.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    applicationAcceleratorEnabled Boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled Boolean
    Should the Application Live View be enabled?
    name String
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled Boolean
    Is public network access enabled?
    sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    springCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    applicationAcceleratorEnabled boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled boolean
    Should the Application Live View be enabled?
    name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled boolean
    Is public network access enabled?
    sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    spring_cloud_service_id str
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    application_accelerator_enabled bool
    Should the Accelerator plugin be enabled?
    application_live_view_enabled bool
    Should the Application Live View be enabled?
    name str
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    public_network_access_enabled bool
    Is public network access enabled?
    sso SpringCloudDevToolPortalSsoArgs
    A sso block as defined below.
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    applicationAcceleratorEnabled Boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled Boolean
    Should the Application Live View be enabled?
    name String
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled Boolean
    Is public network access enabled?
    sso Property Map
    A sso block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SpringCloudDevToolPortal resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SpringCloudDevToolPortal Resource

    Get an existing SpringCloudDevToolPortal 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?: SpringCloudDevToolPortalState, opts?: CustomResourceOptions): SpringCloudDevToolPortal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_accelerator_enabled: Optional[bool] = None,
            application_live_view_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            public_network_access_enabled: Optional[bool] = None,
            spring_cloud_service_id: Optional[str] = None,
            sso: Optional[SpringCloudDevToolPortalSsoArgs] = None) -> SpringCloudDevToolPortal
    func GetSpringCloudDevToolPortal(ctx *Context, name string, id IDInput, state *SpringCloudDevToolPortalState, opts ...ResourceOption) (*SpringCloudDevToolPortal, error)
    public static SpringCloudDevToolPortal Get(string name, Input<string> id, SpringCloudDevToolPortalState? state, CustomResourceOptions? opts = null)
    public static SpringCloudDevToolPortal get(String name, Output<String> id, SpringCloudDevToolPortalState 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.
    The following state arguments are supported:
    ApplicationAcceleratorEnabled bool
    Should the Accelerator plugin be enabled?
    ApplicationLiveViewEnabled bool
    Should the Application Live View be enabled?
    Name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    PublicNetworkAccessEnabled bool
    Is public network access enabled?
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    Sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    ApplicationAcceleratorEnabled bool
    Should the Accelerator plugin be enabled?
    ApplicationLiveViewEnabled bool
    Should the Application Live View be enabled?
    Name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    PublicNetworkAccessEnabled bool
    Is public network access enabled?
    SpringCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    Sso SpringCloudDevToolPortalSsoArgs
    A sso block as defined below.
    applicationAcceleratorEnabled Boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled Boolean
    Should the Application Live View be enabled?
    name String
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled Boolean
    Is public network access enabled?
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    applicationAcceleratorEnabled boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled boolean
    Should the Application Live View be enabled?
    name string
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled boolean
    Is public network access enabled?
    springCloudServiceId string
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    sso SpringCloudDevToolPortalSso
    A sso block as defined below.
    application_accelerator_enabled bool
    Should the Accelerator plugin be enabled?
    application_live_view_enabled bool
    Should the Application Live View be enabled?
    name str
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    public_network_access_enabled bool
    Is public network access enabled?
    spring_cloud_service_id str
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    sso SpringCloudDevToolPortalSsoArgs
    A sso block as defined below.
    applicationAcceleratorEnabled Boolean
    Should the Accelerator plugin be enabled?
    applicationLiveViewEnabled Boolean
    Should the Application Live View be enabled?
    name String
    The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is default. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    publicNetworkAccessEnabled Boolean
    Is public network access enabled?
    springCloudServiceId String
    The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
    sso Property Map
    A sso block as defined below.

    Supporting Types

    SpringCloudDevToolPortalSso, SpringCloudDevToolPortalSsoArgs

    ClientId string
    Specifies the public identifier for the application.
    ClientSecret string
    Specifies the secret known only to the application and the authorization server.
    MetadataUrl string
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    Scopes List<string>
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.
    ClientId string
    Specifies the public identifier for the application.
    ClientSecret string
    Specifies the secret known only to the application and the authorization server.
    MetadataUrl string
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    Scopes []string
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.
    clientId String
    Specifies the public identifier for the application.
    clientSecret String
    Specifies the secret known only to the application and the authorization server.
    metadataUrl String
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.
    clientId string
    Specifies the public identifier for the application.
    clientSecret string
    Specifies the secret known only to the application and the authorization server.
    metadataUrl string
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    scopes string[]
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.
    client_id str
    Specifies the public identifier for the application.
    client_secret str
    Specifies the secret known only to the application and the authorization server.
    metadata_url str
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    scopes Sequence[str]
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.
    clientId String
    Specifies the public identifier for the application.
    clientSecret String
    Specifies the secret known only to the application and the authorization server.
    metadataUrl String
    Specifies the URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    Specifies a list of specific actions applications can be allowed to do on a user's behalf.

    Import

    Spring Cloud Dev Tool Portals can be imported using the resource id, e.g.

    $ pulumi import azure:appplatform/springCloudDevToolPortal:SpringCloudDevToolPortal example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resourceGroup1/providers/Microsoft.AppPlatform/Spring/service1/DevToolPortals/default
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi