1. Packages
  2. Azure Classic
  3. API Docs
  4. mssql
  5. JobAgent

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.mssql.JobAgent

Explore with Pulumi AI

Manages an Elastic Job Agent.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example",
    location: "northeurope",
});
const exampleServer = new azure.mssql.Server("example", {
    name: "example-server",
    resourceGroupName: example.name,
    location: example.location,
    version: "12.0",
    administratorLogin: "4dm1n157r470r",
    administratorLoginPassword: "4-v3ry-53cr37-p455w0rd",
});
const exampleDatabase = new azure.mssql.Database("example", {
    name: "example-db",
    serverId: exampleServer.id,
    collation: "SQL_Latin1_General_CP1_CI_AS",
    skuName: "S1",
});
const exampleJobAgent = new azure.mssql.JobAgent("example", {
    name: "example-job-agent",
    location: example.location,
    databaseId: exampleDatabase.id,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example",
    location="northeurope")
example_server = azure.mssql.Server("example",
    name="example-server",
    resource_group_name=example.name,
    location=example.location,
    version="12.0",
    administrator_login="4dm1n157r470r",
    administrator_login_password="4-v3ry-53cr37-p455w0rd")
example_database = azure.mssql.Database("example",
    name="example-db",
    server_id=example_server.id,
    collation="SQL_Latin1_General_CP1_CI_AS",
    sku_name="S1")
example_job_agent = azure.mssql.JobAgent("example",
    name="example-job-agent",
    location=example.location,
    database_id=example_database.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/mssql"
	"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"),
			Location: pulumi.String("northeurope"),
		})
		if err != nil {
			return err
		}
		exampleServer, err := mssql.NewServer(ctx, "example", &mssql.ServerArgs{
			Name:                       pulumi.String("example-server"),
			ResourceGroupName:          example.Name,
			Location:                   example.Location,
			Version:                    pulumi.String("12.0"),
			AdministratorLogin:         pulumi.String("4dm1n157r470r"),
			AdministratorLoginPassword: pulumi.String("4-v3ry-53cr37-p455w0rd"),
		})
		if err != nil {
			return err
		}
		exampleDatabase, err := mssql.NewDatabase(ctx, "example", &mssql.DatabaseArgs{
			Name:      pulumi.String("example-db"),
			ServerId:  exampleServer.ID(),
			Collation: pulumi.String("SQL_Latin1_General_CP1_CI_AS"),
			SkuName:   pulumi.String("S1"),
		})
		if err != nil {
			return err
		}
		_, err = mssql.NewJobAgent(ctx, "example", &mssql.JobAgentArgs{
			Name:       pulumi.String("example-job-agent"),
			Location:   example.Location,
			DatabaseId: exampleDatabase.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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",
        Location = "northeurope",
    });

    var exampleServer = new Azure.MSSql.Server("example", new()
    {
        Name = "example-server",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Version = "12.0",
        AdministratorLogin = "4dm1n157r470r",
        AdministratorLoginPassword = "4-v3ry-53cr37-p455w0rd",
    });

    var exampleDatabase = new Azure.MSSql.Database("example", new()
    {
        Name = "example-db",
        ServerId = exampleServer.Id,
        Collation = "SQL_Latin1_General_CP1_CI_AS",
        SkuName = "S1",
    });

    var exampleJobAgent = new Azure.MSSql.JobAgent("example", new()
    {
        Name = "example-job-agent",
        Location = example.Location,
        DatabaseId = exampleDatabase.Id,
    });

});
Copy
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.mssql.Server;
import com.pulumi.azure.mssql.ServerArgs;
import com.pulumi.azure.mssql.Database;
import com.pulumi.azure.mssql.DatabaseArgs;
import com.pulumi.azure.mssql.JobAgent;
import com.pulumi.azure.mssql.JobAgentArgs;
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")
            .location("northeurope")
            .build());

        var exampleServer = new Server("exampleServer", ServerArgs.builder()
            .name("example-server")
            .resourceGroupName(example.name())
            .location(example.location())
            .version("12.0")
            .administratorLogin("4dm1n157r470r")
            .administratorLoginPassword("4-v3ry-53cr37-p455w0rd")
            .build());

        var exampleDatabase = new Database("exampleDatabase", DatabaseArgs.builder()
            .name("example-db")
            .serverId(exampleServer.id())
            .collation("SQL_Latin1_General_CP1_CI_AS")
            .skuName("S1")
            .build());

        var exampleJobAgent = new JobAgent("exampleJobAgent", JobAgentArgs.builder()
            .name("example-job-agent")
            .location(example.location())
            .databaseId(exampleDatabase.id())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example
      location: northeurope
  exampleServer:
    type: azure:mssql:Server
    name: example
    properties:
      name: example-server
      resourceGroupName: ${example.name}
      location: ${example.location}
      version: '12.0'
      administratorLogin: 4dm1n157r470r
      administratorLoginPassword: 4-v3ry-53cr37-p455w0rd
  exampleDatabase:
    type: azure:mssql:Database
    name: example
    properties:
      name: example-db
      serverId: ${exampleServer.id}
      collation: SQL_Latin1_General_CP1_CI_AS
      skuName: S1
  exampleJobAgent:
    type: azure:mssql:JobAgent
    name: example
    properties:
      name: example-job-agent
      location: ${example.location}
      databaseId: ${exampleDatabase.id}
Copy

Create JobAgent Resource

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

Constructor syntax

new JobAgent(name: string, args: JobAgentArgs, opts?: CustomResourceOptions);
@overload
def JobAgent(resource_name: str,
             args: JobAgentArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def JobAgent(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             database_id: Optional[str] = None,
             identity: Optional[JobAgentIdentityArgs] = None,
             location: Optional[str] = None,
             name: Optional[str] = None,
             sku: Optional[str] = None,
             tags: Optional[Mapping[str, str]] = None)
func NewJobAgent(ctx *Context, name string, args JobAgentArgs, opts ...ResourceOption) (*JobAgent, error)
public JobAgent(string name, JobAgentArgs args, CustomResourceOptions? opts = null)
public JobAgent(String name, JobAgentArgs args)
public JobAgent(String name, JobAgentArgs args, CustomResourceOptions options)
type: azure:mssql:JobAgent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. JobAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. JobAgentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. JobAgentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. JobAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. JobAgentArgs
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 jobAgentResource = new Azure.MSSql.JobAgent("jobAgentResource", new()
{
    DatabaseId = "string",
    Identity = new Azure.MSSql.Inputs.JobAgentIdentityArgs
    {
        IdentityIds = new[]
        {
            "string",
        },
        Type = "string",
    },
    Location = "string",
    Name = "string",
    Sku = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := mssql.NewJobAgent(ctx, "jobAgentResource", &mssql.JobAgentArgs{
	DatabaseId: pulumi.String("string"),
	Identity: &mssql.JobAgentIdentityArgs{
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		Type: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Sku:      pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var jobAgentResource = new JobAgent("jobAgentResource", JobAgentArgs.builder()
    .databaseId("string")
    .identity(JobAgentIdentityArgs.builder()
        .identityIds("string")
        .type("string")
        .build())
    .location("string")
    .name("string")
    .sku("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
job_agent_resource = azure.mssql.JobAgent("jobAgentResource",
    database_id="string",
    identity={
        "identity_ids": ["string"],
        "type": "string",
    },
    location="string",
    name="string",
    sku="string",
    tags={
        "string": "string",
    })
Copy
const jobAgentResource = new azure.mssql.JobAgent("jobAgentResource", {
    databaseId: "string",
    identity: {
        identityIds: ["string"],
        type: "string",
    },
    location: "string",
    name: "string",
    sku: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:mssql:JobAgent
properties:
    databaseId: string
    identity:
        identityIds:
            - string
        type: string
    location: string
    name: string
    sku: string
    tags:
        string: string
Copy

JobAgent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The JobAgent resource accepts the following input properties:

DatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Identity JobAgentIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to this Elastic Job Agent.
DatabaseId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Identity JobAgentIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
Tags map[string]string
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku String
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Map<String,String>
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags {[key: string]: string}
A mapping of tags which should be assigned to this Elastic Job Agent.
database_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku str
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Mapping[str, str]
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku String
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Map<String>
A mapping of tags which should be assigned to this Elastic Job Agent.

Outputs

All input properties are implicitly available as output properties. Additionally, the JobAgent 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 JobAgent Resource

Get an existing JobAgent 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?: JobAgentState, opts?: CustomResourceOptions): JobAgent
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        database_id: Optional[str] = None,
        identity: Optional[JobAgentIdentityArgs] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        sku: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> JobAgent
func GetJobAgent(ctx *Context, name string, id IDInput, state *JobAgentState, opts ...ResourceOption) (*JobAgent, error)
public static JobAgent Get(string name, Input<string> id, JobAgentState? state, CustomResourceOptions? opts = null)
public static JobAgent get(String name, Output<String> id, JobAgentState state, CustomResourceOptions options)
resources:  _:    type: azure:mssql:JobAgent    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
DatabaseId Changes to this property will trigger replacement. string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Identity JobAgentIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to this Elastic Job Agent.
DatabaseId Changes to this property will trigger replacement. string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Identity JobAgentIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
Sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
Tags map[string]string
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId Changes to this property will trigger replacement. String
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku String
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Map<String,String>
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId Changes to this property will trigger replacement. string
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku string
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags {[key: string]: string}
A mapping of tags which should be assigned to this Elastic Job Agent.
database_id Changes to this property will trigger replacement. str
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity JobAgentIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku str
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Mapping[str, str]
A mapping of tags which should be assigned to this Elastic Job Agent.
databaseId Changes to this property will trigger replacement. String
The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created.
sku String
The name of the SKU to use for this Elastic Job Agent. Possible values are JA100, JA200, JA400, and JA800. Defaults to JA100.
tags Map<String>
A mapping of tags which should be assigned to this Elastic Job Agent.

Supporting Types

JobAgentIdentity
, JobAgentIdentityArgs

IdentityIds This property is required. List<string>
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
Type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.
IdentityIds This property is required. []string
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
Type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.
identityIds This property is required. List<String>
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
type This property is required. String
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.
identityIds This property is required. string[]
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.
identity_ids This property is required. Sequence[str]
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
type This property is required. str
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.
identityIds This property is required. List<String>
Specifies a list of User Assigned Managed Identity IDs to assign to this Elastic Job Agent.
type This property is required. String
Specifies the type of Managed Service Identity that should be configured on this Elastic Job Agent. Currently only UserAssigned is supported.

Import

Elastic Job Agents can be imported using the id, e.g.

$ pulumi import azure:mssql/jobAgent:JobAgent example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Sql/servers/myserver1/jobAgents/myjobagent1
Copy

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.