0
0
llucycodes42
This code defines a resource called vcd_snat and sets its properties. The name of the resource is myResourceName and the description is my-description-${myResourceName}. The edge_gateway property specifies the name of the edge gateway to which the myResourceName should connect. The external_ip and internal_ip properties specify the IP address and IP range of the edge gateway.
Shortcut: tf_vcd_snat
resource "vcd_snat" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
edge_gateway = "Edge Gateway Name"
external_ip = "78.101.10.20"
internal_ip = "10.10.0.0/24"
}