Azure Native
Service
Service resource API Version: 2020-07-01.
Example Usage
Services_CreateOrUpdate
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var service = new AzureNative.AppPlatform.Service("service", new AzureNative.AppPlatform.ServiceArgs
{
Location = "eastus",
Properties = ,
ResourceGroupName = "myResourceGroup",
ServiceName = "myservice",
Sku = new AzureNative.AppPlatform.Inputs.SkuArgs
{
Name = "S0",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
});
}
}
package main
import (
appplatform "github.com/pulumi/pulumi-azure-native/sdk/go/azure/appplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appplatform.NewService(ctx, "service", &appplatform.ServiceArgs{
Location: pulumi.String("eastus"),
Properties: nil,
ResourceGroupName: pulumi.String("myResourceGroup"),
ServiceName: pulumi.String("myservice"),
Sku: &appplatform.SkuArgs{
Name: pulumi.String("S0"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var service = new Service("service", ServiceArgs.builder()
.location("eastus")
.properties()
.resourceGroupName("myResourceGroup")
.serviceName("myservice")
.sku(Map.ofEntries(
Map.entry("name", "S0"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.appplatform.Service("service",
location="eastus",
properties=azure_native.appplatform.ClusterResourcePropertiesArgs(),
resource_group_name="myResourceGroup",
service_name="myservice",
sku=azure_native.appplatform.SkuArgs(
name="S0",
tier="Standard",
),
tags={
"key1": "value1",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.appplatform.Service("service", {
location: "eastus",
properties: {},
resourceGroupName: "myResourceGroup",
serviceName: "myservice",
sku: {
name: "S0",
tier: "Standard",
},
tags: {
key1: "value1",
},
});
resources:
service:
type: azure-native:appplatform:Service
properties:
location: eastus
properties: {}
resourceGroupName: myResourceGroup
serviceName: myservice
sku:
name: S0
tier: Standard
tags:
key1: value1
Services_CreateOrUpdate_VNetInjection
using Pulumi;
using AzureNative = Pulumi.AzureNative;
class MyStack : Stack
{
public MyStack()
{
var service = new AzureNative.AppPlatform.Service("service", new AzureNative.AppPlatform.ServiceArgs
{
Location = "eastus",
Properties = new AzureNative.AppPlatform.Inputs.ClusterResourcePropertiesArgs
{
NetworkProfile = new AzureNative.AppPlatform.Inputs.NetworkProfileArgs
{
AppNetworkResourceGroup = "my-app-network-rg",
AppSubnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
ServiceCidr = "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
ServiceRuntimeNetworkResourceGroup = "my-service-runtime-network-rg",
ServiceRuntimeSubnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
},
},
ResourceGroupName = "myResourceGroup",
ServiceName = "myservice",
Sku = new AzureNative.AppPlatform.Inputs.SkuArgs
{
Name = "S0",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
});
}
}
package main
import (
appplatform "github.com/pulumi/pulumi-azure-native/sdk/go/azure/appplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appplatform.NewService(ctx, "service", &appplatform.ServiceArgs{
Location: pulumi.String("eastus"),
Properties: &appplatform.ClusterResourcePropertiesArgs{
NetworkProfile: &appplatform.NetworkProfileArgs{
AppNetworkResourceGroup: pulumi.String("my-app-network-rg"),
AppSubnetId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps"),
ServiceCidr: pulumi.String("10.8.0.0/16,10.244.0.0/16,10.245.0.1/16"),
ServiceRuntimeNetworkResourceGroup: pulumi.String("my-service-runtime-network-rg"),
ServiceRuntimeSubnetId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime"),
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
ServiceName: pulumi.String("myservice"),
Sku: &appplatform.SkuArgs{
Name: pulumi.String("S0"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var service = new Service("service", ServiceArgs.builder()
.location("eastus")
.properties(Map.of("networkProfile", Map.ofEntries(
Map.entry("appNetworkResourceGroup", "my-app-network-rg"),
Map.entry("appSubnetId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps"),
Map.entry("serviceCidr", "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16"),
Map.entry("serviceRuntimeNetworkResourceGroup", "my-service-runtime-network-rg"),
Map.entry("serviceRuntimeSubnetId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime")
)))
.resourceGroupName("myResourceGroup")
.serviceName("myservice")
.sku(Map.ofEntries(
Map.entry("name", "S0"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.appplatform.Service("service",
location="eastus",
properties=azure_native.appplatform.ClusterResourcePropertiesArgs(
network_profile=azure_native.appplatform.NetworkProfileArgs(
app_network_resource_group="my-app-network-rg",
app_subnet_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
service_cidr="10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
service_runtime_network_resource_group="my-service-runtime-network-rg",
service_runtime_subnet_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
),
),
resource_group_name="myResourceGroup",
service_name="myservice",
sku=azure_native.appplatform.SkuArgs(
name="S0",
tier="Standard",
),
tags={
"key1": "value1",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.appplatform.Service("service", {
location: "eastus",
properties: {
networkProfile: {
appNetworkResourceGroup: "my-app-network-rg",
appSubnetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
serviceCidr: "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
serviceRuntimeNetworkResourceGroup: "my-service-runtime-network-rg",
serviceRuntimeSubnetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
},
},
resourceGroupName: "myResourceGroup",
serviceName: "myservice",
sku: {
name: "S0",
tier: "Standard",
},
tags: {
key1: "value1",
},
});
resources:
service:
type: azure-native:appplatform:Service
properties:
location: eastus
properties:
networkProfile:
appNetworkResourceGroup: my-app-network-rg
appSubnetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps
serviceCidr: 10.8.0.0/16,10.244.0.0/16,10.245.0.1/16
serviceRuntimeNetworkResourceGroup: my-service-runtime-network-rg
serviceRuntimeSubnetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime
resourceGroupName: myResourceGroup
serviceName: myservice
sku:
name: S0
tier: Standard
tags:
key1: value1
Create a Service Resource
new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
properties: Optional[ClusterResourcePropertiesArgs] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def Service(resource_name: str,
args: ServiceArgs,
opts: Optional[ResourceOptions] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: azure-native:appplatform:Service
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- 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 ServiceArgs
- 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 ServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Service 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 Service resource accepts the following input properties:
- Resource
Group stringName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location string
The GEO location of the resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Cluster Resource Properties Args Properties of the Service resource
- Service
Name string The name of the Service resource.
- Sku
Pulumi.
Azure Native. App Platform. Inputs. Sku Args Sku of the Service resource
- Dictionary<string, string>
Tags of the service which is a list of key value pairs that describe the resource.
- Resource
Group stringName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location string
The GEO location of the resource.
- Properties
Cluster
Resource Properties Args Properties of the Service resource
- Service
Name string The name of the Service resource.
- Sku
Sku
Args Sku of the Service resource
- map[string]string
Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group StringName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location String
The GEO location of the resource.
- properties
Cluster
Resource Properties Args Properties of the Service resource
- service
Name String The name of the Service resource.
- sku
Sku
Args Sku of the Service resource
- Map
Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group stringName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location string
The GEO location of the resource.
- properties
Cluster
Resource Properties Args Properties of the Service resource
- service
Name string The name of the Service resource.
- sku
Sku
Args Sku of the Service resource
- {[key: string]: string}
Tags of the service which is a list of key value pairs that describe the resource.
- resource_
group_ strname The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location str
The GEO location of the resource.
- properties
Cluster
Resource Properties Args Properties of the Service resource
- service_
name str The name of the Service resource.
- sku
Sku
Args Sku of the Service resource
- Mapping[str, str]
Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group StringName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location String
The GEO location of the resource.
- properties Property Map
Properties of the Service resource
- service
Name String The name of the Service resource.
- sku Property Map
Sku of the Service resource
- Map
Tags of the service which is a list of key value pairs that describe the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:
Supporting Types
ClusterResourceProperties
- Network
Profile Pulumi.Azure Native. App Platform. Inputs. Network Profile Network profile of the Service
- Network
Profile NetworkProfile Network profile of the Service
- network
Profile NetworkProfile Network profile of the Service
- network
Profile NetworkProfile Network profile of the Service
- network_
profile NetworkProfile Network profile of the Service
- network
Profile Property Map Network profile of the Service
ClusterResourcePropertiesResponse
- Provisioning
State string Provisioning state of the Service
- Service
Id string ServiceInstanceEntity GUID which uniquely identifies a created resource
- Version int
Version of the Service
- Network
Profile Pulumi.Azure Native. App Platform. Inputs. Network Profile Response Network profile of the Service
- Provisioning
State string Provisioning state of the Service
- Service
Id string ServiceInstanceEntity GUID which uniquely identifies a created resource
- Version int
Version of the Service
- Network
Profile NetworkProfile Response Network profile of the Service
- provisioning
State String Provisioning state of the Service
- service
Id String ServiceInstanceEntity GUID which uniquely identifies a created resource
- version Integer
Version of the Service
- network
Profile NetworkProfile Response Network profile of the Service
- provisioning
State string Provisioning state of the Service
- service
Id string ServiceInstanceEntity GUID which uniquely identifies a created resource
- version number
Version of the Service
- network
Profile NetworkProfile Response Network profile of the Service
- provisioning_
state str Provisioning state of the Service
- service_
id str ServiceInstanceEntity GUID which uniquely identifies a created resource
- version int
Version of the Service
- network_
profile NetworkProfile Response Network profile of the Service
- provisioning
State String Provisioning state of the Service
- service
Id String ServiceInstanceEntity GUID which uniquely identifies a created resource
- version Number
Version of the Service
- network
Profile Property Map Network profile of the Service
NetworkProfile
- App
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- App
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network StringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr string Azure Spring Cloud service reserved CIDR
- service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app_
network_ strresource_ group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app_
subnet_ strid Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service_
cidr str Azure Spring Cloud service reserved CIDR
- service_
runtime_ strnetwork_ resource_ group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service_
runtime_ strsubnet_ id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network StringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
NetworkProfileResponse
- Outbound
IPs Pulumi.Azure Native. App Platform. Inputs. Network Profile Response Outbound IPs Desired outbound IP resources for Azure Spring Cloud instance.
- Required
Traffics List<Pulumi.Azure Native. App Platform. Inputs. Required Traffic Response> Required inbound or outbound traffics for Azure Spring Cloud instance.
- App
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- Outbound
IPs NetworkProfile Response Outbound IPs Desired outbound IP resources for Azure Spring Cloud instance.
- Required
Traffics []RequiredTraffic Response Required inbound or outbound traffics for Azure Spring Cloud instance.
- App
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs NetworkProfile Response Outbound IPs Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics ListTraffic Response> Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network StringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs NetworkProfile Response Outbound IPs Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics RequiredTraffic Response[] Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network stringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet stringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr string Azure Spring Cloud service reserved CIDR
- service
Runtime stringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime stringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound_
ips NetworkProfile Response Outbound IPs Desired outbound IP resources for Azure Spring Cloud instance.
- required_
traffics Sequence[RequiredTraffic Response] Required inbound or outbound traffics for Azure Spring Cloud instance.
- app_
network_ strresource_ group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app_
subnet_ strid Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service_
cidr str Azure Spring Cloud service reserved CIDR
- service_
runtime_ strnetwork_ resource_ group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service_
runtime_ strsubnet_ id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs Property Map Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics List Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network StringResource Group Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
NetworkProfileResponseOutboundIPs
- Public
IPs List<string> A list of public IP addresses.
- Public
IPs []string A list of public IP addresses.
- public
IPs List A list of public IP addresses.
- public
IPs string[] A list of public IP addresses.
- public_
ips Sequence[str] A list of public IP addresses.
- public
IPs List A list of public IP addresses.
RequiredTrafficResponse
Sku
SkuResponse
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:appplatform:Service myservice /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure-native
- License
- Apache-2.0