We recommend using Azure Native.
azure.graph.ServicesAccount
Explore with Pulumi AI
Manages a Microsoft Graph Services Account.
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 exampleServicesAccount = new azure.graph.ServicesAccount("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_services_account = azure.graph.ServicesAccount("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/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/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.NewServicesAccount(ctx, "example", &graph.ServicesAccountArgs{
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 exampleServicesAccount = new Azure.Graph.ServicesAccount("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.ServicesAccount;
import com.pulumi.azure.graph.ServicesAccountArgs;
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 exampleServicesAccount = new ServicesAccount("exampleServicesAccount", ServicesAccountArgs.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
exampleServicesAccount:
type: azure:graph:ServicesAccount
name: example
properties:
name: example
resourceGroupName: ${exampleResourceGroup.name}
applicationId: ${example.applicationId}
tags:
environment: Production
Create ServicesAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServicesAccount(name: string, args: ServicesAccountArgs, opts?: CustomResourceOptions);
@overload
def ServicesAccount(resource_name: str,
args: ServicesAccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServicesAccount(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 NewServicesAccount(ctx *Context, name string, args ServicesAccountArgs, opts ...ResourceOption) (*ServicesAccount, error)
public ServicesAccount(string name, ServicesAccountArgs args, CustomResourceOptions? opts = null)
public ServicesAccount(String name, ServicesAccountArgs args)
public ServicesAccount(String name, ServicesAccountArgs args, CustomResourceOptions options)
type: azure:graph:ServicesAccount
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 ServicesAccountArgs
- 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 ServicesAccountArgs
- 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 ServicesAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServicesAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServicesAccountArgs
- 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 servicesAccountResource = new Azure.Graph.ServicesAccount("servicesAccountResource", new()
{
ApplicationId = "string",
ResourceGroupName = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := graph.NewServicesAccount(ctx, "servicesAccountResource", &graph.ServicesAccountArgs{
ApplicationId: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var servicesAccountResource = new ServicesAccount("servicesAccountResource", ServicesAccountArgs.builder()
.applicationId("string")
.resourceGroupName("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
services_account_resource = azure.graph.ServicesAccount("servicesAccountResource",
application_id="string",
resource_group_name="string",
name="string",
tags={
"string": "string",
})
const servicesAccountResource = new azure.graph.ServicesAccount("servicesAccountResource", {
applicationId: "string",
resourceGroupName: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:graph:ServicesAccount
properties:
applicationId: string
name: string
resourceGroupName: string
tags:
string: string
ServicesAccount 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 ServicesAccount 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 ServicesAccount 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 ServicesAccount Resource
Get an existing ServicesAccount 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?: ServicesAccountState, opts?: CustomResourceOptions): ServicesAccount
@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) -> ServicesAccount
func GetServicesAccount(ctx *Context, name string, id IDInput, state *ServicesAccountState, opts ...ResourceOption) (*ServicesAccount, error)
public static ServicesAccount Get(string name, Input<string> id, ServicesAccountState? state, CustomResourceOptions? opts = null)
public static ServicesAccount get(String name, Output<String> id, ServicesAccountState 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 Pulumi using the resource id
, e.g.
$ pulumi import azure:graph/servicesAccount:ServicesAccount 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.