The triton_fabric resource represents an fabric for a Triton account. The fabric is a logical set of interconnected switches.
resource "triton_fabric" "dmz" {
vlan_id = 100
name = "dmz"
description = "DMZ Network"
subnet = "10.60.1.0/24"
provision_start_ip = "10.60.1.10"
provision_end_ip = "10.60.1.240"
gateway = "10.60.1.1"
resolvers = ["8.8.8.8", "8.8.4.4"]
internet_nat = true
}
The following arguments are supported:
name - (String, Required, Change forces new resource) Network name.
description - (String, Optional, Change forces new resource) Optional description of network.
subnet - (String, Required, Change forces new resource) CIDR formatted string describing network.
provision_start_ip - (String, Required, Change forces new resource) First IP on the network that can be assigned.
provision_end_ip - (String, Required, Change forces new resource) Last assignable IP on the network.
gateway - (String, Optional, Change forces new resource) Optional gateway IP.
resolvers - (List, Optional) Array of IP addresses for resolvers.
routes - (Map, Optional, Change forces new resource) Map of CIDR block to Gateway IP address.
internet_nat - (Bool, Optional, Change forces new resource) If a NAT zone is provisioned at Gateway IP address. Default is true.
vlan_id - (Int, Required, Change forces new resource) VLAN id the network is on. Number between 0-4095 indicating VLAN ID.
The following attributes are exported:
id - (string) - The identifier representing the network in Triton. name - (String) - Network name. public - (Bool) - Whether or not this is an RFC1918 network. fabric - (Bool) - Whether or not this network is on a fabric. description - (String) - Optional description of network. subnet - (String) - CIDR formatted string describing network. provision_start_ip - (String) - First IP on the network that can be assigned. provision_end_ip - (String) - Last assignable IP on the network. gateway - (String) - Optional gateway IP. resolvers - (List) - Array of IP addresses for resolvers. routes - (Map) - Map of CIDR block to Gateway IP address. internet_nat - (Bool) - If a NAT zone is provisioned at Gateway IP address. vlan_id - (Int) - VLAN id the network is on. Number between 0-4095 indicating VLAN ID.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/triton/r/triton_fabric.html