# Cloud NAT Module Simple Cloud NAT management, with optional router creation. - [Basic Example](#basic-example) - [Reserved IPs and custom rules](#reserved-ips-and-custom-rules) - [Variables](#variables) - [Outputs](#outputs) ## Basic Example ```hcl module "nat" { source = "./fabric/modules/net-cloudnat" project_id = "my-project" region = "europe-west1" name = "default" router_network = "my-vpc" } # tftest modules=1 resources=2 ``` ## Reserved IPs and custom rules ```hcl module "addresses" { source = "./fabric/modules/net-address" project_id = "my-project" external_addresses = { a1 = { region = "europe-west1" } a2 = { region = "europe-west1" } a3 = { region = "europe-west1" } } } module "nat" { source = "./fabric/modules/net-cloudnat" project_id = "my-project" region = "europe-west1" name = "nat" router_network = "my-vpc" addresses = [ module.addresses.external_addresses["a1"].self_link, module.addresses.external_addresses["a3"].self_link ] config_port_allocation = { enable_endpoint_independent_mapping = false } rules = [ { description = "rule1" match = "destination.ip == '8.8.8.8'" source_ips = [ module.addresses.external_addresses["a2"].self_link ] } ] } # tftest modules=2 resources=5 inventory=rules.yaml ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L63) | Name of the Cloud NAT resource. | string | ✓ | | | [project_id](variables.tf#L68) | Project where resources will be created. | string | ✓ | | | [region](variables.tf#L73) | Region where resources will be created. | string | ✓ | | | [addresses](variables.tf#L17) | Optional list of external address self links. | list(string) | | [] | | [config_port_allocation](variables.tf#L23) | Configuration for how to assign ports to virtual machines. min_ports_per_vm and max_ports_per_vm have no effect unless enable_dynamic_port_allocation is set to 'true'. | object({…}) | | {} | | [config_source_subnets](variables.tf#L39) | Subnetwork configuration (ALL_SUBNETWORKS_ALL_IP_RANGES, ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES, LIST_OF_SUBNETWORKS). | string | | "ALL_SUBNETWORKS_ALL_IP_RANGES" | | [config_timeouts](variables.tf#L45) | Timeout configurations. | object({…}) | | {} | | [logging_filter](variables.tf#L57) | Enables logging if not null, value is one of 'ERRORS_ONLY', 'TRANSLATIONS_ONLY', 'ALL'. | string | | null | | [router_asn](variables.tf#L78) | Router ASN used for auto-created router. | number | | null | | [router_create](variables.tf#L84) | Create router. | bool | | true | | [router_name](variables.tf#L90) | Router name, leave blank if router will be created to use auto generated name. | string | | null | | [router_network](variables.tf#L96) | Name of the VPC used for auto-created router. | string | | null | | [rules](variables.tf#L102) | List of rules associated with this NAT. | list(object({…})) | | [] | | [subnetworks](variables.tf#L113) | Subnetworks to NAT, only used when config_source_subnets equals LIST_OF_SUBNETWORKS. | list(object({…})) | | [] | ## Outputs | name | description | sensitive | |---|---|:---:| | [id](outputs.tf#L17) | Fully qualified NAT (router) id. | | | [name](outputs.tf#L22) | Name of the Cloud NAT. | | | [nat_ip_allocate_option](outputs.tf#L27) | NAT IP allocation mode. | | | [region](outputs.tf#L32) | Cloud NAT region. | | | [router](outputs.tf#L37) | Cloud NAT router resources (if auto created). | | | [router_name](outputs.tf#L46) | Cloud NAT router name. | |