We recommend using Azure Native.
azure.graph.Account
Explore with Pulumi AI
Manages a Microsoft Graph Services Account.
!> NOTE: This resource has been deprecated in version 5.0 of the provider and will be removed in version 6.0. Please use azure.graph.ServicesAccount
resource instead.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as azuread from "@pulumi/azuread";
const example = new azuread.Application("example", {displayName: "example-app"});
const exampleResourceGroup = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleAccount = new azure.graph.Account("example", {
name: "example",
resourceGroupName: exampleResourceGroup.name,
applicationId: example.applicationId,
tags: {
environment: "Production",
},
});
import pulumi
import pulumi_azure as azure
import pulumi_azuread as azuread
example = azuread.Application("example", display_name="example-app")
example_resource_group = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.graph.Account("example",
name="example",
resource_group_name=example_resource_group.name,
application_id=example.application_id,
tags={
"environment": "Production",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/graph"
"github.com/pulumi/pulumi-azuread/sdk/v5/go/azuread"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := azuread.NewApplication(ctx, "example", &azuread.ApplicationArgs{
DisplayName: pulumi.String("example-app"),
})
if err != nil {
return err
}
exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = graph.NewAccount(ctx, "example", &graph.AccountArgs{
Name: pulumi.String("example"),
ResourceGroupName: exampleResourceGroup.Name,
ApplicationId: example.ApplicationId,
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using AzureAD = Pulumi.AzureAD;
return await Deployment.RunAsync(() =>
{
var example = new AzureAD.Application("example", new()
{
DisplayName = "example-app",
});
var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleAccount = new Azure.Graph.Account("example", new()
{
Name = "example",
ResourceGroupName = exampleResourceGroup.Name,
ApplicationId = example.ApplicationId,
Tags =
{
{ "environment", "Production" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuread.Application;
import com.pulumi.azuread.ApplicationArgs;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.graph.Account;
import com.pulumi.azure.graph.AccountArgs;
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 Application("example", ApplicationArgs.builder()
.displayName("example-app")
.build());
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("example")
.resourceGroupName(exampleResourceGroup.name())
.applicationId(example.applicationId())
.tags(Map.of("environment", "Production"))
.build());
}
}
resources:
example:
type: azuread:Application
properties:
displayName: example-app
exampleResourceGroup:
type: azure:core:ResourceGroup
name: example
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:graph:Account
name: example
properties:
name: example
resourceGroupName: ${exampleResourceGroup.name}
applicationId: ${example.applicationId}
tags:
environment: Production
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure:graph:Account
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 AccountArgs
- 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 AccountArgs
- 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 AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- 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 exampleaccountResourceResourceFromGraphaccount = new Azure.Graph.Account("exampleaccountResourceResourceFromGraphaccount", new()
{
ApplicationId = "string",
ResourceGroupName = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := graph.NewAccount(ctx, "exampleaccountResourceResourceFromGraphaccount", &graph.AccountArgs{
ApplicationId: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampleaccountResourceResourceFromGraphaccount = new Account("exampleaccountResourceResourceFromGraphaccount", AccountArgs.builder()
.applicationId("string")
.resourceGroupName("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
exampleaccount_resource_resource_from_graphaccount = azure.graph.Account("exampleaccountResourceResourceFromGraphaccount",
application_id="string",
resource_group_name="string",
name="string",
tags={
"string": "string",
})
const exampleaccountResourceResourceFromGraphaccount = new azure.graph.Account("exampleaccountResourceResourceFromGraphaccount", {
applicationId: "string",
resourceGroupName: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:graph:Account
properties:
applicationId: string
name: string
resourceGroupName: string
tags:
string: string
Account 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 Account resource accepts the following input properties:
- Application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- Resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Account.
- Application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- Resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- map[string]string
- A mapping of tags which should be assigned to the Account.
- application
Id String - Customer owned application ID. Changing this forces a new Account to be created.
- resource
Group StringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- name String
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Account.
- application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Account.
- application_
id str - Customer owned application ID. Changing this forces a new Account to be created.
- resource_
group_ strname - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- name str
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Account.
- application
Id String - Customer owned application ID. Changing this forces a new Account to be created.
- resource
Group StringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- name String
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Map<String>
- A mapping of tags which should be assigned to the Account.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Billing
Plan stringId - Billing Plan Id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Billing
Plan stringId - Billing Plan Id.
- Id string
- The provider-assigned unique ID for this managed resource.
- billing
Plan StringId - Billing Plan Id.
- id String
- The provider-assigned unique ID for this managed resource.
- billing
Plan stringId - Billing Plan Id.
- id string
- The provider-assigned unique ID for this managed resource.
- billing_
plan_ strid - Billing Plan Id.
- id str
- The provider-assigned unique ID for this managed resource.
- billing
Plan StringId - Billing Plan Id.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Account Resource
Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
billing_plan_id: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Account
func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
public static Account get(String name, Output<String> id, AccountState 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.
- Application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- Billing
Plan stringId - Billing Plan Id.
- Name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Account.
- Application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- Billing
Plan stringId - Billing Plan Id.
- Name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- Resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- map[string]string
- A mapping of tags which should be assigned to the Account.
- application
Id String - Customer owned application ID. Changing this forces a new Account to be created.
- billing
Plan StringId - Billing Plan Id.
- name String
- Specifies the name of this Account. Changing this forces a new Account to be created.
- resource
Group StringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Account.
- application
Id string - Customer owned application ID. Changing this forces a new Account to be created.
- billing
Plan stringId - Billing Plan Id.
- name string
- Specifies the name of this Account. Changing this forces a new Account to be created.
- resource
Group stringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Account.
- application_
id str - Customer owned application ID. Changing this forces a new Account to be created.
- billing_
plan_ strid - Billing Plan Id.
- name str
- Specifies the name of this Account. Changing this forces a new Account to be created.
- resource_
group_ strname - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Account.
- application
Id String - Customer owned application ID. Changing this forces a new Account to be created.
- billing
Plan StringId - Billing Plan Id.
- name String
- Specifies the name of this Account. Changing this forces a new Account to be created.
- resource
Group StringName - Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.
- Map<String>
- A mapping of tags which should be assigned to the Account.
Import
An existing Account can be imported into Terraform using the resource id
, e.g.
$ pulumi import azure:graph/account:Account example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/example-resource-group/providers/Microsoft.GraphServices/accounts/account1
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.