ResourceGroup

Manages a Resource Group.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = new Azure.Core.ResourceGroup("example", new Azure.Core.ResourceGroupArgs
        {
            Location = "West Europe",
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        _, err = core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
            Location: pulumi.String("West Europe"),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example", location="West Europe")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    location: "West Europe",
});

Create a ResourceGroup Resource

def ResourceGroup(resource_name, opts=None, location=None, name=None, tags=None, __props__=None);
public ResourceGroup(string name, ResourceGroupArgs? args = null, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args ResourceGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ResourceGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ResourceGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

ResourceGroup Resource Properties

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

Inputs

The ResourceGroup resource accepts the following input properties:

Location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

Name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

Tags Dictionary<string, string>

A mapping of tags which should be assigned to the Resource Group.

Location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

Name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

Tags map[string]string

A mapping of tags which should be assigned to the Resource Group.

location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

tags {[key: string]: string}

A mapping of tags which should be assigned to the Resource Group.

location str

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

name str

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

tags Dict[str, str]

A mapping of tags which should be assigned to the Resource Group.

Outputs

All input properties are implicitly available as output properties. Additionally, the ResourceGroup 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 str
The provider-assigned unique ID for this managed resource.

Look up an Existing ResourceGroup Resource

Get an existing ResourceGroup 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?: ResourceGroupState, opts?: CustomResourceOptions): ResourceGroup
static get(resource_name, id, opts=None, location=None, name=None, tags=None, __props__=None);
func GetResourceGroup(ctx *Context, name string, id IDInput, state *ResourceGroupState, opts ...ResourceOption) (*ResourceGroup, error)
public static ResourceGroup Get(string name, Input<string> id, ResourceGroupState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

Location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

Name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

Tags Dictionary<string, string>

A mapping of tags which should be assigned to the Resource Group.

Location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

Name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

Tags map[string]string

A mapping of tags which should be assigned to the Resource Group.

location string

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

name string

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

tags {[key: string]: string}

A mapping of tags which should be assigned to the Resource Group.

location str

The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created.

name str

The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created.

tags Dict[str, str]

A mapping of tags which should be assigned to the Resource Group.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.