1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. bastionhost
  5. HostAccountUserGroupAttachment
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.bastionhost.HostAccountUserGroupAttachment

Explore with Pulumi AI

Provides a Bastion Host Host Account Attachment resource to add list host accounts into one user group.

NOTE: Available since v1.135.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const name = config.get("name") || "tf_example";
const _default = alicloud.getZones({
    availableResourceCreation: "VSwitch",
});
const defaultGetNetworks = alicloud.vpc.getNetworks({
    nameRegex: "^default-NODELETING$",
    cidrBlock: "10.4.0.0/16",
});
const defaultGetSwitches = Promise.all([defaultGetNetworks, _default]).then(([defaultGetNetworks, _default]) => alicloud.vpc.getSwitches({
    cidrBlock: "10.4.0.0/24",
    vpcId: defaultGetNetworks.ids?.[0],
    zoneId: _default.zones?.[0]?.id,
}));
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {vpcId: defaultGetNetworks.then(defaultGetNetworks => defaultGetNetworks.ids?.[0])});
const defaultInstance = new alicloud.bastionhost.Instance("default", {
    description: name,
    licenseCode: "bhah_ent_50_asset",
    planCode: "cloudbastion",
    storage: "5",
    bandwidth: "5",
    period: 1,
    vswitchId: defaultGetSwitches.then(defaultGetSwitches => defaultGetSwitches.ids?.[0]),
    securityGroupIds: [defaultSecurityGroup.id],
});
const defaultHost = new alicloud.bastionhost.Host("default", {
    instanceId: defaultInstance.id,
    hostName: name,
    activeAddressType: "Private",
    hostPrivateAddress: "172.16.0.10",
    osType: "Linux",
    source: "Local",
});
const defaultHostAccount = new alicloud.bastionhost.HostAccount("default", {
    hostAccountName: name,
    hostId: defaultHost.hostId,
    instanceId: defaultHost.instanceId,
    protocolName: "SSH",
    password: "YourPassword12345",
});
const defaultUserGroup = new alicloud.bastionhost.UserGroup("default", {
    instanceId: defaultHost.instanceId,
    userGroupName: name,
});
const defaultHostAccountUserGroupAttachment = new alicloud.bastionhost.HostAccountUserGroupAttachment("default", {
    instanceId: defaultHost.instanceId,
    userGroupId: defaultUserGroup.userGroupId,
    hostId: defaultHost.hostId,
    hostAccountIds: [defaultHostAccount.hostAccountId],
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf_example"
default = alicloud.get_zones(available_resource_creation="VSwitch")
default_get_networks = alicloud.vpc.get_networks(name_regex="^default-NODELETING$",
    cidr_block="10.4.0.0/16")
default_get_switches = alicloud.vpc.get_switches(cidr_block="10.4.0.0/24",
    vpc_id=default_get_networks.ids[0],
    zone_id=default.zones[0].id)
default_security_group = alicloud.ecs.SecurityGroup("default", vpc_id=default_get_networks.ids[0])
default_instance = alicloud.bastionhost.Instance("default",
    description=name,
    license_code="bhah_ent_50_asset",
    plan_code="cloudbastion",
    storage="5",
    bandwidth="5",
    period=1,
    vswitch_id=default_get_switches.ids[0],
    security_group_ids=[default_security_group.id])
default_host = alicloud.bastionhost.Host("default",
    instance_id=default_instance.id,
    host_name=name,
    active_address_type="Private",
    host_private_address="172.16.0.10",
    os_type="Linux",
    source="Local")
default_host_account = alicloud.bastionhost.HostAccount("default",
    host_account_name=name,
    host_id=default_host.host_id,
    instance_id=default_host.instance_id,
    protocol_name="SSH",
    password="YourPassword12345")
default_user_group = alicloud.bastionhost.UserGroup("default",
    instance_id=default_host.instance_id,
    user_group_name=name)
default_host_account_user_group_attachment = alicloud.bastionhost.HostAccountUserGroupAttachment("default",
    instance_id=default_host.instance_id,
    user_group_id=default_user_group.user_group_id,
    host_id=default_host.host_id,
    host_account_ids=[default_host_account.host_account_id])
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/bastionhost"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "tf_example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
		}, nil)
		if err != nil {
			return err
		}
		defaultGetNetworks, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
			NameRegex: pulumi.StringRef("^default-NODELETING$"),
			CidrBlock: pulumi.StringRef("10.4.0.0/16"),
		}, nil)
		if err != nil {
			return err
		}
		defaultGetSwitches, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
			CidrBlock: pulumi.StringRef("10.4.0.0/24"),
			VpcId:     pulumi.StringRef(defaultGetNetworks.Ids[0]),
			ZoneId:    pulumi.StringRef(_default.Zones[0].Id),
		}, nil)
		if err != nil {
			return err
		}
		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
			VpcId: pulumi.String(defaultGetNetworks.Ids[0]),
		})
		if err != nil {
			return err
		}
		defaultInstance, err := bastionhost.NewInstance(ctx, "default", &bastionhost.InstanceArgs{
			Description: pulumi.String(name),
			LicenseCode: pulumi.String("bhah_ent_50_asset"),
			PlanCode:    pulumi.String("cloudbastion"),
			Storage:     pulumi.String("5"),
			Bandwidth:   pulumi.String("5"),
			Period:      pulumi.Int(1),
			VswitchId:   pulumi.String(defaultGetSwitches.Ids[0]),
			SecurityGroupIds: pulumi.StringArray{
				defaultSecurityGroup.ID(),
			},
		})
		if err != nil {
			return err
		}
		defaultHost, err := bastionhost.NewHost(ctx, "default", &bastionhost.HostArgs{
			InstanceId:         defaultInstance.ID(),
			HostName:           pulumi.String(name),
			ActiveAddressType:  pulumi.String("Private"),
			HostPrivateAddress: pulumi.String("172.16.0.10"),
			OsType:             pulumi.String("Linux"),
			Source:             pulumi.String("Local"),
		})
		if err != nil {
			return err
		}
		defaultHostAccount, err := bastionhost.NewHostAccount(ctx, "default", &bastionhost.HostAccountArgs{
			HostAccountName: pulumi.String(name),
			HostId:          defaultHost.HostId,
			InstanceId:      defaultHost.InstanceId,
			ProtocolName:    pulumi.String("SSH"),
			Password:        pulumi.String("YourPassword12345"),
		})
		if err != nil {
			return err
		}
		defaultUserGroup, err := bastionhost.NewUserGroup(ctx, "default", &bastionhost.UserGroupArgs{
			InstanceId:    defaultHost.InstanceId,
			UserGroupName: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		_, err = bastionhost.NewHostAccountUserGroupAttachment(ctx, "default", &bastionhost.HostAccountUserGroupAttachmentArgs{
			InstanceId:  defaultHost.InstanceId,
			UserGroupId: defaultUserGroup.UserGroupId,
			HostId:      defaultHost.HostId,
			HostAccountIds: pulumi.StringArray{
				defaultHostAccount.HostAccountId,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf_example";
    var @default = AliCloud.GetZones.Invoke(new()
    {
        AvailableResourceCreation = "VSwitch",
    });

    var defaultGetNetworks = AliCloud.Vpc.GetNetworks.Invoke(new()
    {
        NameRegex = "^default-NODELETING$",
        CidrBlock = "10.4.0.0/16",
    });

    var defaultGetSwitches = AliCloud.Vpc.GetSwitches.Invoke(new()
    {
        CidrBlock = "10.4.0.0/24",
        VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
        ZoneId = @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
    });

    var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
    {
        VpcId = defaultGetNetworks.Apply(getNetworksResult => getNetworksResult.Ids[0]),
    });

    var defaultInstance = new AliCloud.BastionHost.Instance("default", new()
    {
        Description = name,
        LicenseCode = "bhah_ent_50_asset",
        PlanCode = "cloudbastion",
        Storage = "5",
        Bandwidth = "5",
        Period = 1,
        VswitchId = defaultGetSwitches.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
        SecurityGroupIds = new[]
        {
            defaultSecurityGroup.Id,
        },
    });

    var defaultHost = new AliCloud.BastionHost.Host("default", new()
    {
        InstanceId = defaultInstance.Id,
        HostName = name,
        ActiveAddressType = "Private",
        HostPrivateAddress = "172.16.0.10",
        OsType = "Linux",
        Source = "Local",
    });

    var defaultHostAccount = new AliCloud.BastionHost.HostAccount("default", new()
    {
        HostAccountName = name,
        HostId = defaultHost.HostId,
        InstanceId = defaultHost.InstanceId,
        ProtocolName = "SSH",
        Password = "YourPassword12345",
    });

    var defaultUserGroup = new AliCloud.BastionHost.UserGroup("default", new()
    {
        InstanceId = defaultHost.InstanceId,
        UserGroupName = name,
    });

    var defaultHostAccountUserGroupAttachment = new AliCloud.BastionHost.HostAccountUserGroupAttachment("default", new()
    {
        InstanceId = defaultHost.InstanceId,
        UserGroupId = defaultUserGroup.UserGroupId,
        HostId = defaultHost.HostId,
        HostAccountIds = new[]
        {
            defaultHostAccount.HostAccountId,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.bastionhost.Instance;
import com.pulumi.alicloud.bastionhost.InstanceArgs;
import com.pulumi.alicloud.bastionhost.Host;
import com.pulumi.alicloud.bastionhost.HostArgs;
import com.pulumi.alicloud.bastionhost.HostAccount;
import com.pulumi.alicloud.bastionhost.HostAccountArgs;
import com.pulumi.alicloud.bastionhost.UserGroup;
import com.pulumi.alicloud.bastionhost.UserGroupArgs;
import com.pulumi.alicloud.bastionhost.HostAccountUserGroupAttachment;
import com.pulumi.alicloud.bastionhost.HostAccountUserGroupAttachmentArgs;
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) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tf_example");
        final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableResourceCreation("VSwitch")
            .build());

        final var defaultGetNetworks = VpcFunctions.getNetworks(GetNetworksArgs.builder()
            .nameRegex("^default-NODELETING$")
            .cidrBlock("10.4.0.0/16")
            .build());

        final var defaultGetSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
            .cidrBlock("10.4.0.0/24")
            .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
            .zoneId(default_.zones()[0].id())
            .build());

        var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
            .vpcId(defaultGetNetworks.applyValue(getNetworksResult -> getNetworksResult.ids()[0]))
            .build());

        var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
            .description(name)
            .licenseCode("bhah_ent_50_asset")
            .planCode("cloudbastion")
            .storage("5")
            .bandwidth("5")
            .period("1")
            .vswitchId(defaultGetSwitches.applyValue(getSwitchesResult -> getSwitchesResult.ids()[0]))
            .securityGroupIds(defaultSecurityGroup.id())
            .build());

        var defaultHost = new Host("defaultHost", HostArgs.builder()
            .instanceId(defaultInstance.id())
            .hostName(name)
            .activeAddressType("Private")
            .hostPrivateAddress("172.16.0.10")
            .osType("Linux")
            .source("Local")
            .build());

        var defaultHostAccount = new HostAccount("defaultHostAccount", HostAccountArgs.builder()
            .hostAccountName(name)
            .hostId(defaultHost.hostId())
            .instanceId(defaultHost.instanceId())
            .protocolName("SSH")
            .password("YourPassword12345")
            .build());

        var defaultUserGroup = new UserGroup("defaultUserGroup", UserGroupArgs.builder()
            .instanceId(defaultHost.instanceId())
            .userGroupName(name)
            .build());

        var defaultHostAccountUserGroupAttachment = new HostAccountUserGroupAttachment("defaultHostAccountUserGroupAttachment", HostAccountUserGroupAttachmentArgs.builder()
            .instanceId(defaultHost.instanceId())
            .userGroupId(defaultUserGroup.userGroupId())
            .hostId(defaultHost.hostId())
            .hostAccountIds(defaultHostAccount.hostAccountId())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf_example
resources:
  defaultSecurityGroup:
    type: alicloud:ecs:SecurityGroup
    name: default
    properties:
      vpcId: ${defaultGetNetworks.ids[0]}
  defaultInstance:
    type: alicloud:bastionhost:Instance
    name: default
    properties:
      description: ${name}
      licenseCode: bhah_ent_50_asset
      planCode: cloudbastion
      storage: '5'
      bandwidth: '5'
      period: '1'
      vswitchId: ${defaultGetSwitches.ids[0]}
      securityGroupIds:
        - ${defaultSecurityGroup.id}
  defaultHost:
    type: alicloud:bastionhost:Host
    name: default
    properties:
      instanceId: ${defaultInstance.id}
      hostName: ${name}
      activeAddressType: Private
      hostPrivateAddress: 172.16.0.10
      osType: Linux
      source: Local
  defaultHostAccount:
    type: alicloud:bastionhost:HostAccount
    name: default
    properties:
      hostAccountName: ${name}
      hostId: ${defaultHost.hostId}
      instanceId: ${defaultHost.instanceId}
      protocolName: SSH
      password: YourPassword12345
  defaultUserGroup:
    type: alicloud:bastionhost:UserGroup
    name: default
    properties:
      instanceId: ${defaultHost.instanceId}
      userGroupName: ${name}
  defaultHostAccountUserGroupAttachment:
    type: alicloud:bastionhost:HostAccountUserGroupAttachment
    name: default
    properties:
      instanceId: ${defaultHost.instanceId}
      userGroupId: ${defaultUserGroup.userGroupId}
      hostId: ${defaultHost.hostId}
      hostAccountIds:
        - ${defaultHostAccount.hostAccountId}
variables:
  default:
    fn::invoke:
      function: alicloud:getZones
      arguments:
        availableResourceCreation: VSwitch
  defaultGetNetworks:
    fn::invoke:
      function: alicloud:vpc:getNetworks
      arguments:
        nameRegex: ^default-NODELETING$
        cidrBlock: 10.4.0.0/16
  defaultGetSwitches:
    fn::invoke:
      function: alicloud:vpc:getSwitches
      arguments:
        cidrBlock: 10.4.0.0/24
        vpcId: ${defaultGetNetworks.ids[0]}
        zoneId: ${default.zones[0].id}
Copy

Create HostAccountUserGroupAttachment Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new HostAccountUserGroupAttachment(name: string, args: HostAccountUserGroupAttachmentArgs, opts?: CustomResourceOptions);
@overload
def HostAccountUserGroupAttachment(resource_name: str,
                                   args: HostAccountUserGroupAttachmentArgs,
                                   opts: Optional[ResourceOptions] = None)

@overload
def HostAccountUserGroupAttachment(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   host_account_ids: Optional[Sequence[str]] = None,
                                   host_id: Optional[str] = None,
                                   instance_id: Optional[str] = None,
                                   user_group_id: Optional[str] = None)
func NewHostAccountUserGroupAttachment(ctx *Context, name string, args HostAccountUserGroupAttachmentArgs, opts ...ResourceOption) (*HostAccountUserGroupAttachment, error)
public HostAccountUserGroupAttachment(string name, HostAccountUserGroupAttachmentArgs args, CustomResourceOptions? opts = null)
public HostAccountUserGroupAttachment(String name, HostAccountUserGroupAttachmentArgs args)
public HostAccountUserGroupAttachment(String name, HostAccountUserGroupAttachmentArgs args, CustomResourceOptions options)
type: alicloud:bastionhost:HostAccountUserGroupAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. HostAccountUserGroupAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. HostAccountUserGroupAttachmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. HostAccountUserGroupAttachmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HostAccountUserGroupAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HostAccountUserGroupAttachmentArgs
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 hostAccountUserGroupAttachmentResource = new AliCloud.BastionHost.HostAccountUserGroupAttachment("hostAccountUserGroupAttachmentResource", new()
{
    HostAccountIds = new[]
    {
        "string",
    },
    HostId = "string",
    InstanceId = "string",
    UserGroupId = "string",
});
Copy
example, err := bastionhost.NewHostAccountUserGroupAttachment(ctx, "hostAccountUserGroupAttachmentResource", &bastionhost.HostAccountUserGroupAttachmentArgs{
	HostAccountIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	HostId:      pulumi.String("string"),
	InstanceId:  pulumi.String("string"),
	UserGroupId: pulumi.String("string"),
})
Copy
var hostAccountUserGroupAttachmentResource = new HostAccountUserGroupAttachment("hostAccountUserGroupAttachmentResource", HostAccountUserGroupAttachmentArgs.builder()
    .hostAccountIds("string")
    .hostId("string")
    .instanceId("string")
    .userGroupId("string")
    .build());
Copy
host_account_user_group_attachment_resource = alicloud.bastionhost.HostAccountUserGroupAttachment("hostAccountUserGroupAttachmentResource",
    host_account_ids=["string"],
    host_id="string",
    instance_id="string",
    user_group_id="string")
Copy
const hostAccountUserGroupAttachmentResource = new alicloud.bastionhost.HostAccountUserGroupAttachment("hostAccountUserGroupAttachmentResource", {
    hostAccountIds: ["string"],
    hostId: "string",
    instanceId: "string",
    userGroupId: "string",
});
Copy
type: alicloud:bastionhost:HostAccountUserGroupAttachment
properties:
    hostAccountIds:
        - string
    hostId: string
    instanceId: string
    userGroupId: string
Copy

HostAccountUserGroupAttachment Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The HostAccountUserGroupAttachment resource accepts the following input properties:

HostAccountIds This property is required. List<string>
A list IDs of the host account.
HostId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the host.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
UserGroupId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
HostAccountIds This property is required. []string
A list IDs of the host account.
HostId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the host.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
UserGroupId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds This property is required. List<String>
A list IDs of the host account.
hostId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the host.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds This property is required. string[]
A list IDs of the host account.
hostId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the host.
instanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
host_account_ids This property is required. Sequence[str]
A list IDs of the host account.
host_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the host.
instance_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
user_group_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds This property is required. List<String>
A list IDs of the host account.
hostId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the host.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.

Outputs

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

Look up Existing HostAccountUserGroupAttachment Resource

Get an existing HostAccountUserGroupAttachment 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?: HostAccountUserGroupAttachmentState, opts?: CustomResourceOptions): HostAccountUserGroupAttachment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        host_account_ids: Optional[Sequence[str]] = None,
        host_id: Optional[str] = None,
        instance_id: Optional[str] = None,
        user_group_id: Optional[str] = None) -> HostAccountUserGroupAttachment
func GetHostAccountUserGroupAttachment(ctx *Context, name string, id IDInput, state *HostAccountUserGroupAttachmentState, opts ...ResourceOption) (*HostAccountUserGroupAttachment, error)
public static HostAccountUserGroupAttachment Get(string name, Input<string> id, HostAccountUserGroupAttachmentState? state, CustomResourceOptions? opts = null)
public static HostAccountUserGroupAttachment get(String name, Output<String> id, HostAccountUserGroupAttachmentState state, CustomResourceOptions options)
resources:  _:    type: alicloud:bastionhost:HostAccountUserGroupAttachment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
HostAccountIds List<string>
A list IDs of the host account.
HostId Changes to this property will trigger replacement. string
The ID of the host.
InstanceId Changes to this property will trigger replacement. string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
UserGroupId Changes to this property will trigger replacement. string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
HostAccountIds []string
A list IDs of the host account.
HostId Changes to this property will trigger replacement. string
The ID of the host.
InstanceId Changes to this property will trigger replacement. string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
UserGroupId Changes to this property will trigger replacement. string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds List<String>
A list IDs of the host account.
hostId Changes to this property will trigger replacement. String
The ID of the host.
instanceId Changes to this property will trigger replacement. String
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId Changes to this property will trigger replacement. String
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds string[]
A list IDs of the host account.
hostId Changes to this property will trigger replacement. string
The ID of the host.
instanceId Changes to this property will trigger replacement. string
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId Changes to this property will trigger replacement. string
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
host_account_ids Sequence[str]
A list IDs of the host account.
host_id Changes to this property will trigger replacement. str
The ID of the host.
instance_id Changes to this property will trigger replacement. str
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
user_group_id Changes to this property will trigger replacement. str
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.
hostAccountIds List<String>
A list IDs of the host account.
hostId Changes to this property will trigger replacement. String
The ID of the host.
instanceId Changes to this property will trigger replacement. String
The ID of the Bastionhost instance where you want to authorize the user group to manage the specified hosts and host accounts.
userGroupId Changes to this property will trigger replacement. String
The ID of the user group that you want to authorize to manage the specified hosts and host accounts.

Import

Bastion Host Host Account can be imported using the id, e.g.

$ pulumi import alicloud:bastionhost/hostAccountUserGroupAttachment:HostAccountUserGroupAttachment example <instance_id>:<user_group_id>:<host_id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.