ServicesAccountArgs

data class ServicesAccountArgs(val applicationId: Output<String>? = null, val name: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ServicesAccountArgs>

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",
})
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 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
})
}
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

API Providers

This resource uses the following Azure API Providers:

  • Microsoft.GraphServices: 2023-04-13

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

Constructors

Link copied to clipboard
constructor(applicationId: Output<String>? = null, name: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val applicationId: Output<String>? = null

Customer owned application ID. Changing this forces a new Account to be created.

Link copied to clipboard
val name: Output<String>? = null

Specifies the name of this Account. Changing this forces a new Account to be created.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

Specifies the name of the Resource Group within which this Account should exist. Changing this forces a new Account to be created.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A mapping of tags which should be assigned to the Account.

Functions

Link copied to clipboard
open override fun toJava(): ServicesAccountArgs