Provides a Sag SnatEntry resource. This topic describes how to add a SNAT entry to enable the SNAT function. The SNAT function can hide internal IP addresses and resolve private IP address conflicts. With this function, on-premises sites can access internal IP addresses, but cannot be accessed by internal IP addresses. If you do not add a SNAT entry, on-premises sites can access each other only when all related IP addresses do not conflict.
For information about Sag SnatEntry and how to use it, see What is Sag SnatEntry.
Basic Usage
variable "sag_id" {
default = "sag-9bifk***"
}
provider "alicloud" {
region = "cn-shanghai"
}
resource "alicloud_sag_snat_entry" "default" {
sag_id = var.sag_id
cidr_block = "192.168.7.0/24"
snat_ip = "192.0.0.2"
}
The following arguments are supported:
sag_id
- (Required, ForceNew) The ID of the SAG instance.cidr_block
- (Required, ForceNew) The destination CIDR block.snat_ip
- (Required, ForceNew) The public IP address.The following attributes are exported:
id
- The ID of the SNAT entry Id and formates as <sag_id>:<snat_id>
.The Sag SnatEntry can be imported using the id, e.g.
$ terraform import alicloud_sag_snat_entry.example sag-abc123456:snat-abc123456