alicloud_vpn_ipsec_server
更新时间:
Provides a VPN Ipsec Server resource.
For information about VPN Ipsec Server and how to use it, see What is Ipsec Server.
-> NOTE: Available since v1.161.0+.
Example Usage
Basic Usage
variable "name" {
default = "terraform-example"
}
data "alicloud_zones" "default" {
available_resource_creation = "VSwitch"
}
data "alicloud_vpcs" "default" {
name_regex = "^default-NODELETING$"
cidr_block = "172.16.0.0/16"
}
data "alicloud_vswitches" "default0" {
vpc_id = data.alicloud_vpcs.default.ids.0
zone_id = data.alicloud_zones.default.ids.0
}
data "alicloud_vswitches" "default1" {
vpc_id = data.alicloud_vpcs.default.ids.0
zone_id = data.alicloud_zones.default.ids.1
}
resource "alicloud_vpn_gateway" "default" {
vpn_gateway_name = var.name
vpc_id = data.alicloud_vpcs.default.ids.0
bandwidth = "10"
enable_ssl = true
description = var.name
payment_type = "Subscription"
vswitch_id = data.alicloud_vswitches.default0.ids.0
disaster_recovery_vswitch_id = data.alicloud_vswitches.default1.ids.0
}
resource "alicloud_vpn_ipsec_server" "foo" {
client_ip_pool = "10.0.0.0/24"
ipsec_server_name = var.name
local_subnet = "192.168.0.0/24"
vpn_gateway_id = alicloud_vpn_gateway.default.id
psk_enabled = true
}
Argument Reference
The following arguments are supported:
client_ip_pool
- (Required) The client CIDR block. It refers to the CIDR block that is allocated to the virtual interface of the client.dry_run
- (Optional) The dry run.effect_immediately
- (Optional) Specifies whether you want the configuration to immediately take effect.ipsec_server_name
- (Optional) The name of the IPsec server. The name must be2
to128
characters in length, and can contain digits, hyphens (-), and underscores (_). It must start with a letter.local_subnet
- (Required) The local CIDR block. It refers to the CIDR block of the virtual private cloud (VPC) that is used to connect with the client. Separate multiple CIDR blocks with commas (,). Example:192.168.1.0/24,192.168.2.0/24
.psk
- (Optional) The pre-shared key. The pre-shared key is used to authenticate the VPN gateway and the client. By default, the system generates a random string that is 16 bits in length. You can also specify the pre-shared key. It can contain at most 100 characters.psk_enabled
- (Optional) Whether to enable the pre-shared key authentication method. The value is onlytrue
, which indicates that the pre-shared key authentication method is enabled.vpn_gateway_id
- (Required, ForceNew) The ID of the VPN gateway.ike_config
- (Optional) The configuration of Phase 1 negotiations. Seeike_config
below.ipsec_config
- (Optional) The configuration of Phase 2 negotiations. Seeipsec_config
below.
ike_config
The ike_config supports the following:
ike_auth_alg
- (Optional) The authentication algorithm that is used in Phase 1 negotiations. Default value:sha1
.ike_enc_alg
- (Optional) The encryption algorithm that is used in Phase 1 negotiations. Default value:aes
.ike_lifetime
- (Optional) IkeLifetime: the SA lifetime determined by Phase 1 negotiations. Valid values:0
to86400
. Default value:86400
. Unit:seconds
.ike_mode
- (Optional) The IKE negotiation mode. Default value:main
.ike_pfs
- (Optional) The Diffie-Hellman key exchange algorithm that is used in Phase 1 negotiations. Default value:group2
.ike_version
- (Optional) The IKE version. Valid values:ikev1
andikev2
. Default value:ikev2
.local_id
- (Optional) The identifier of the IPsec server. The value can be a fully qualified domain name (FQDN) or an IP address. The default value is the public IP address of the VPN gateway.remote_id
- (Optional) The identifier of the customer gateway. The value can be an FQDN or an IP address. By default, this parameter is not specified.
ipsec_config
The ipsec_config supports the following:
ipsec_enc_alg
- (Optional) The encryption algorithm that is used in Phase 2 negotiations. Default value:aes
.ipsec_lifetime
- (Optional) The SA lifetime determined by Phase 2 negotiations. Valid values:0
to86400
. Default value:86400
. Unit:seconds
.ipsec_pfs
- (Optional) Forwards packets of all protocols. The Diffie-Hellman key exchange algorithm used in Phase 2 negotiations. Default value:group2
.ipsec_auth_alg
- (Optional) The authentication algorithm that is used in Phase 2 negotiations. Default value:sha1
.
Attributes Reference
The following attributes are exported:
id
- The resource ID in terraform of Ipsec Server.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 1 mins) Used when create the Ipsec Server.update
- (Defaults to 1 mins) Used when update the Ipsec Server.delete
- (Defaults to 1 mins) Used when delete the Ipsec Server.
Import
VPN Ipsec Server can be imported using the id, e.g.
$ terraform import alicloud_vpn_ipsec_server.example <id>
文档内容是否对您有帮助?