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

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.appplatform.SpringCloudDevToolPortal

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

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

    Manages a Spring Cloud Dev Tool Portal.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var current = Azure.Core.GetClientConfig.Invoke();
    
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new()
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            SkuName = "E0",
        });
    
        var exampleSpringCloudDevToolPortal = new Azure.AppPlatform.SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal", new()
        {
            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 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
    		}
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			SkuName:           pulumi.String("E0"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appplatform.NewSpringCloudDevToolPortal(ctx, "exampleSpringCloudDevToolPortal", &appplatform.SpringCloudDevToolPortalArgs{
    			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
    	})
    }
    
    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()        
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .skuName("E0")
                .build());
    
            var exampleSpringCloudDevToolPortal = new SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal", SpringCloudDevToolPortalArgs.builder()        
                .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());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    current = azure.core.get_client_config()
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        sku_name="E0")
    example_spring_cloud_dev_tool_portal = azure.appplatform.SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal",
        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)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const current = azure.core.getClientConfig({});
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        skuName: "E0",
    });
    const exampleSpringCloudDevToolPortal = new azure.appplatform.SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal", {
        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,
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleSpringCloudService:
        type: azure:appplatform:SpringCloudService
        properties:
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          skuName: E0
      exampleSpringCloudDevToolPortal:
        type: azure:appplatform:SpringCloudDevToolPortal
        properties:
          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

    new SpringCloudDevToolPortal(name: string, args: SpringCloudDevToolPortalArgs, opts?: CustomResourceOptions);
    @overload
    def SpringCloudDevToolPortal(resource_name: 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)
    @overload
    def SpringCloudDevToolPortal(resource_name: str,
                                 args: SpringCloudDevToolPortalArgs,
                                 opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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
    

    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.49.0 published on Tuesday, Aug 29, 2023 by Pulumi