alicloud_sag_snat_entry

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.

Example Usage

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"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

The Sag SnatEntry can be imported using the id, e.g.

$ terraform import alicloud_sag_snat_entry.example sag-abc123456:snat-abc123456