alicloud.bastionhost.Host
Provides a Bastion Host Host resource.
For information about Bastion Host Host and how to use it, see What is Host.
NOTE: Available in v1.135.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = new AliCloud.BastionHost.Host("example", new()
{
ActiveAddressType = "Private",
HostName = "example_value",
HostPrivateAddress = "172.16.0.10",
InstanceId = "bastionhost-cn-tl3xxxxxxx",
OsType = "Linux",
Source = "Local",
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/bastionhost"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bastionhost.NewHost(ctx, "example", &bastionhost.HostArgs{
ActiveAddressType: pulumi.String("Private"),
HostName: pulumi.String("example_value"),
HostPrivateAddress: pulumi.String("172.16.0.10"),
InstanceId: pulumi.String("bastionhost-cn-tl3xxxxxxx"),
OsType: pulumi.String("Linux"),
Source: pulumi.String("Local"),
})
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.alicloud.bastionhost.Host;
import com.pulumi.alicloud.bastionhost.HostArgs;
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 Host("example", HostArgs.builder()
.activeAddressType("Private")
.hostName("example_value")
.hostPrivateAddress("172.16.0.10")
.instanceId("bastionhost-cn-tl3xxxxxxx")
.osType("Linux")
.source("Local")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.bastionhost.Host("example",
active_address_type="Private",
host_name="example_value",
host_private_address="172.16.0.10",
instance_id="bastionhost-cn-tl3xxxxxxx",
os_type="Linux",
source="Local")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = new alicloud.bastionhost.Host("example", {
activeAddressType: "Private",
hostName: "example_value",
hostPrivateAddress: "172.16.0.10",
instanceId: "bastionhost-cn-tl3xxxxxxx",
osType: "Linux",
source: "Local",
});
resources:
example:
type: alicloud:bastionhost:Host
properties:
activeAddressType: Private
hostName: example_value
hostPrivateAddress: 172.16.0.10
instanceId: bastionhost-cn-tl3xxxxxxx
osType: Linux
source: Local
Create Host Resource
new Host(name: string, args: HostArgs, opts?: CustomResourceOptions);
@overload
def Host(resource_name: str,
opts: Optional[ResourceOptions] = None,
active_address_type: Optional[str] = None,
comment: Optional[str] = None,
host_name: Optional[str] = None,
host_private_address: Optional[str] = None,
host_public_address: Optional[str] = None,
instance_id: Optional[str] = None,
instance_region_id: Optional[str] = None,
os_type: Optional[str] = None,
source: Optional[str] = None,
source_instance_id: Optional[str] = None)
@overload
def Host(resource_name: str,
args: HostArgs,
opts: Optional[ResourceOptions] = None)
func NewHost(ctx *Context, name string, args HostArgs, opts ...ResourceOption) (*Host, error)
public Host(string name, HostArgs args, CustomResourceOptions? opts = null)
type: alicloud:bastionhost:Host
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HostArgs
- 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 HostArgs
- 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 HostArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HostArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HostArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Host 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 Host resource accepts the following input properties:
- Active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- Host
Name string Specify the new create a host name of the supports up to 128 characters.
- Instance
Id string Specify the new create a host where the Bastion host ID of.
- Os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- Source string
Specify the new create a host of source. Valid values:
- Comment string
Specify a host of notes, supports up to 500 characters.
- Host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- Host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- Instance
Region stringId The instance region id.
- Source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- Active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- Host
Name string Specify the new create a host name of the supports up to 128 characters.
- Instance
Id string Specify the new create a host where the Bastion host ID of.
- Os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- Source string
Specify the new create a host of source. Valid values:
- Comment string
Specify a host of notes, supports up to 500 characters.
- Host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- Host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- Instance
Region stringId The instance region id.
- Source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address StringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- host
Name String Specify the new create a host name of the supports up to 128 characters.
- instance
Id String Specify the new create a host where the Bastion host ID of.
- os
Type String Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source String
Specify the new create a host of source. Valid values:
- comment String
Specify a host of notes, supports up to 500 characters.
- host
Private StringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public StringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Region StringId The instance region id.
- source
Instance StringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- host
Name string Specify the new create a host name of the supports up to 128 characters.
- instance
Id string Specify the new create a host where the Bastion host ID of.
- os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source string
Specify the new create a host of source. Valid values:
- comment string
Specify a host of notes, supports up to 500 characters.
- host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Region stringId The instance region id.
- source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active_
address_ strtype Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- host_
name str Specify the new create a host name of the supports up to 128 characters.
- instance_
id str Specify the new create a host where the Bastion host ID of.
- os_
type str Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source str
Specify the new create a host of source. Valid values:
- comment str
Specify a host of notes, supports up to 500 characters.
- host_
private_ straddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host_
public_ straddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance_
region_ strid The instance region id.
- source_
instance_ strid Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address StringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- host
Name String Specify the new create a host name of the supports up to 128 characters.
- instance
Id String Specify the new create a host where the Bastion host ID of.
- os
Type String Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source String
Specify the new create a host of source. Valid values:
- comment String
Specify a host of notes, supports up to 500 characters.
- host
Private StringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public StringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Region StringId The instance region id.
- source
Instance StringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Host resource produces the following output properties:
Look up Existing Host Resource
Get an existing Host 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?: HostState, opts?: CustomResourceOptions): Host
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active_address_type: Optional[str] = None,
comment: Optional[str] = None,
host_id: Optional[str] = None,
host_name: Optional[str] = None,
host_private_address: Optional[str] = None,
host_public_address: Optional[str] = None,
instance_id: Optional[str] = None,
instance_region_id: Optional[str] = None,
os_type: Optional[str] = None,
source: Optional[str] = None,
source_instance_id: Optional[str] = None) -> Host
func GetHost(ctx *Context, name string, id IDInput, state *HostState, opts ...ResourceOption) (*Host, error)
public static Host Get(string name, Input<string> id, HostState? state, CustomResourceOptions? opts = null)
public static Host get(String name, Output<String> id, HostState 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.
- Active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- Comment string
Specify a host of notes, supports up to 500 characters.
- Host
Id string The host ID.
- Host
Name string Specify the new create a host name of the supports up to 128 characters.
- Host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- Host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- Instance
Id string Specify the new create a host where the Bastion host ID of.
- Instance
Region stringId The instance region id.
- Os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- Source string
Specify the new create a host of source. Valid values:
- Source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- Active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- Comment string
Specify a host of notes, supports up to 500 characters.
- Host
Id string The host ID.
- Host
Name string Specify the new create a host name of the supports up to 128 characters.
- Host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- Host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- Instance
Id string Specify the new create a host where the Bastion host ID of.
- Instance
Region stringId The instance region id.
- Os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- Source string
Specify the new create a host of source. Valid values:
- Source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address StringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- comment String
Specify a host of notes, supports up to 500 characters.
- host
Id String The host ID.
- host
Name String Specify the new create a host name of the supports up to 128 characters.
- host
Private StringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public StringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Id String Specify the new create a host where the Bastion host ID of.
- instance
Region StringId The instance region id.
- os
Type String Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source String
Specify the new create a host of source. Valid values:
- source
Instance StringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address stringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- comment string
Specify a host of notes, supports up to 500 characters.
- host
Id string The host ID.
- host
Name string Specify the new create a host name of the supports up to 128 characters.
- host
Private stringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public stringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Id string Specify the new create a host where the Bastion host ID of.
- instance
Region stringId The instance region id.
- os
Type string Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source string
Specify the new create a host of source. Valid values:
- source
Instance stringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active_
address_ strtype Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- comment str
Specify a host of notes, supports up to 500 characters.
- host_
id str The host ID.
- host_
name str Specify the new create a host name of the supports up to 128 characters.
- host_
private_ straddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host_
public_ straddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance_
id str Specify the new create a host where the Bastion host ID of.
- instance_
region_ strid The instance region id.
- os_
type str Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source str
Specify the new create a host of source. Valid values:
- source_
instance_ strid Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
- active
Address StringType Specify the new create a host of address types. Valid values:
Public
: the IP address of a Public network.Private
: Private network address.- comment String
Specify a host of notes, supports up to 500 characters.
- host
Id String The host ID.
- host
Name String Specify the new create a host name of the supports up to 128 characters.
- host
Private StringAddress Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if the
active_address_type
parameter is set toPrivate
.- host
Public StringAddress Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.
- instance
Id String Specify the new create a host where the Bastion host ID of.
- instance
Region StringId The instance region id.
- os
Type String Specify the new create the host's operating system. Valid values:
Linux
,Windows
.- source String
Specify the new create a host of source. Valid values:
- source
Instance StringId Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if the
source
parameter is set toEcs
orRds
.
Import
Bastion Host Host can be imported using the id, e.g.
$ pulumi import alicloud:bastionhost/host:Host example <instance_id>:<host_id>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.