azure-native.sql.ServerTrustGroup

Explore with Pulumi AI

A server trust group. API Version: 2020-11-01-preview.

Example Usage

Create server trust group

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var serverTrustGroup = new AzureNative.Sql.ServerTrustGroup("serverTrustGroup", new()
    {
        GroupMembers = new[]
        {
            new AzureNative.Sql.Inputs.ServerInfoArgs
            {
                ServerId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1",
            },
            new AzureNative.Sql.Inputs.ServerInfoArgs
            {
                ServerId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2",
            },
        },
        LocationName = "Japan East",
        ResourceGroupName = "Default",
        ServerTrustGroupName = "server-trust-group-test",
        TrustScopes = new[]
        {
            "GlobalTransactions",
            "ServiceBroker",
        },
    });

});
package main

import (
	sql "github.com/pulumi/pulumi-azure-native/sdk/go/azure/sql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewServerTrustGroup(ctx, "serverTrustGroup", &sql.ServerTrustGroupArgs{
			GroupMembers: sql.ServerInfoArray{
				&sql.ServerInfoArgs{
					ServerId: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1"),
				},
				&sql.ServerInfoArgs{
					ServerId: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2"),
				},
			},
			LocationName:         pulumi.String("Japan East"),
			ResourceGroupName:    pulumi.String("Default"),
			ServerTrustGroupName: pulumi.String("server-trust-group-test"),
			TrustScopes: pulumi.StringArray{
				pulumi.String("GlobalTransactions"),
				pulumi.String("ServiceBroker"),
			},
		})
		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.azurenative.sql.ServerTrustGroup;
import com.pulumi.azurenative.sql.ServerTrustGroupArgs;
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 serverTrustGroup = new ServerTrustGroup("serverTrustGroup", ServerTrustGroupArgs.builder()        
            .groupMembers(            
                Map.of("serverId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1"),
                Map.of("serverId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2"))
            .locationName("Japan East")
            .resourceGroupName("Default")
            .serverTrustGroupName("server-trust-group-test")
            .trustScopes(            
                "GlobalTransactions",
                "ServiceBroker")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

server_trust_group = azure_native.sql.ServerTrustGroup("serverTrustGroup",
    group_members=[
        azure_native.sql.ServerInfoArgs(
            server_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1",
        ),
        azure_native.sql.ServerInfoArgs(
            server_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2",
        ),
    ],
    location_name="Japan East",
    resource_group_name="Default",
    server_trust_group_name="server-trust-group-test",
    trust_scopes=[
        "GlobalTransactions",
        "ServiceBroker",
    ])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const serverTrustGroup = new azure_native.sql.ServerTrustGroup("serverTrustGroup", {
    groupMembers: [
        {
            serverId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1",
        },
        {
            serverId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2",
        },
    ],
    locationName: "Japan East",
    resourceGroupName: "Default",
    serverTrustGroupName: "server-trust-group-test",
    trustScopes: [
        "GlobalTransactions",
        "ServiceBroker",
    ],
});
resources:
  serverTrustGroup:
    type: azure-native:sql:ServerTrustGroup
    properties:
      groupMembers:
        - serverId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-1
        - serverId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/managedInstances/managedInstance-2
      locationName: Japan East
      resourceGroupName: Default
      serverTrustGroupName: server-trust-group-test
      trustScopes:
        - GlobalTransactions
        - ServiceBroker

Create ServerTrustGroup Resource

new ServerTrustGroup(name: string, args: ServerTrustGroupArgs, opts?: CustomResourceOptions);
@overload
def ServerTrustGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     group_members: Optional[Sequence[ServerInfoArgs]] = None,
                     location_name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     server_trust_group_name: Optional[str] = None,
                     trust_scopes: Optional[Sequence[str]] = None)
@overload
def ServerTrustGroup(resource_name: str,
                     args: ServerTrustGroupArgs,
                     opts: Optional[ResourceOptions] = None)
func NewServerTrustGroup(ctx *Context, name string, args ServerTrustGroupArgs, opts ...ResourceOption) (*ServerTrustGroup, error)
public ServerTrustGroup(string name, ServerTrustGroupArgs args, CustomResourceOptions? opts = null)
public ServerTrustGroup(String name, ServerTrustGroupArgs args)
public ServerTrustGroup(String name, ServerTrustGroupArgs args, CustomResourceOptions options)
type: azure-native:sql:ServerTrustGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ServerTrustGroupArgs
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 ServerTrustGroupArgs
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 ServerTrustGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ServerTrustGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ServerTrustGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ServerTrustGroup 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 ServerTrustGroup resource accepts the following input properties:

GroupMembers List<Pulumi.AzureNative.Sql.Inputs.ServerInfoArgs>

Group members information for the server trust group.

LocationName string

The name of the region where the resource is located.

ResourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

TrustScopes List<string>

Trust scope of the server trust group.

ServerTrustGroupName string

The name of the server trust group.

GroupMembers []ServerInfoArgs

Group members information for the server trust group.

LocationName string

The name of the region where the resource is located.

ResourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

TrustScopes []string

Trust scope of the server trust group.

ServerTrustGroupName string

The name of the server trust group.

groupMembers List<ServerInfoArgs>

Group members information for the server trust group.

locationName String

The name of the region where the resource is located.

resourceGroupName String

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

trustScopes List<String>

Trust scope of the server trust group.

serverTrustGroupName String

The name of the server trust group.

groupMembers ServerInfoArgs[]

Group members information for the server trust group.

locationName string

The name of the region where the resource is located.

resourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

trustScopes string[]

Trust scope of the server trust group.

serverTrustGroupName string

The name of the server trust group.

group_members Sequence[ServerInfoArgs]

Group members information for the server trust group.

location_name str

The name of the region where the resource is located.

resource_group_name str

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

trust_scopes Sequence[str]

Trust scope of the server trust group.

server_trust_group_name str

The name of the server trust group.

groupMembers List<Property Map>

Group members information for the server trust group.

locationName String

The name of the region where the resource is located.

resourceGroupName String

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

trustScopes List<String>

Trust scope of the server trust group.

serverTrustGroupName String

The name of the server trust group.

Outputs

All input properties are implicitly available as output properties. Additionally, the ServerTrustGroup resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name.

Type string

Resource type.

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name.

Type string

Resource type.

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name.

type String

Resource type.

id string

The provider-assigned unique ID for this managed resource.

name string

Resource name.

type string

Resource type.

id str

The provider-assigned unique ID for this managed resource.

name str

Resource name.

type str

Resource type.

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name.

type String

Resource type.

Supporting Types

ServerInfo

ServerId string

Server Id.

ServerId string

Server Id.

serverId String

Server Id.

serverId string

Server Id.

server_id str

Server Id.

serverId String

Server Id.

ServerInfoResponse

ServerId string

Server Id.

ServerId string

Server Id.

serverId String

Server Id.

serverId string

Server Id.

server_id str

Server Id.

serverId String

Server Id.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:sql:ServerTrustGroup server-trust-group-test /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Sql/locations/Japan East/serverTrustGroups/server-trust-group-test 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0