| --- |
| # ---------------------------------------------------------------------------- |
| # |
| # *** AUTO GENERATED CODE *** Type: MMv1 *** |
| # |
| # ---------------------------------------------------------------------------- |
| # |
| # This file is automatically generated by Magic Modules and manual |
| # changes will be clobbered when the file is regenerated. |
| # |
| # Please read more about how to change this file in |
| # .github/CONTRIBUTING.md. |
| # |
| # ---------------------------------------------------------------------------- |
| subcategory: "Compute Engine" |
| description: |- |
| A VPC network is a virtual version of the traditional physical networks |
| that exist within and between physical data centers. |
| --- |
| |
| # google_compute_subnetwork |
| |
| A VPC network is a virtual version of the traditional physical networks |
| that exist within and between physical data centers. A VPC network |
| provides connectivity for your Compute Engine virtual machine (VM) |
| instances, Container Engine containers, App Engine Flex services, and |
| other network-related resources. |
| |
| Each GCP project contains one or more VPC networks. Each VPC network is a |
| global entity spanning all GCP regions. This global VPC network allows VM |
| instances and other resources to communicate with each other via internal, |
| private IP addresses. |
| |
| Each VPC network is subdivided into subnets, and each subnet is contained |
| within a single region. You can have more than one subnet in a region for |
| a given VPC network. Each subnet has a contiguous private RFC1918 IP |
| space. You create instances, containers, and the like in these subnets. |
| When you create an instance, you must create it in a subnet, and the |
| instance draws its internal IP address from that subnet. |
| |
| Virtual machine (VM) instances in a VPC network can communicate with |
| instances in all other subnets of the same VPC network, regardless of |
| region, using their RFC1918 private IP addresses. You can isolate portions |
| of the network, even entire subnets, using firewall rules. |
| |
| |
| To get more information about Subnetwork, see: |
| |
| * [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/subnetworks) |
| * How-to Guides |
| * [Cloud Networking](https://cloud.google.com/vpc/docs/using-vpc) |
| * [Private Google Access](https://cloud.google.com/vpc/docs/configure-private-google-access) |
| |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_basic&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Basic |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "network-with-private-secondary-ip-ranges" { |
| name = "test-subnetwork" |
| ip_cidr_range = "10.2.0.0/16" |
| region = "us-central1" |
| network = google_compute_network.custom-test.id |
| secondary_ip_range { |
| range_name = "tf-test-secondary-range-update1" |
| ip_cidr_range = "192.168.10.0/24" |
| } |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| name = "test-network" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_logging_config&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Logging Config |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnet-with-logging" { |
| name = "log-test-subnetwork" |
| ip_cidr_range = "10.2.0.0/16" |
| region = "us-central1" |
| network = google_compute_network.custom-test.id |
| |
| log_config { |
| aggregation_interval = "INTERVAL_10_MIN" |
| flow_sampling = 0.5 |
| metadata = "INCLUDE_ALL_METADATA" |
| } |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| name = "log-test-network" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_internal_l7lb&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Internal L7lb |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "network-for-l7lb" { |
| provider = google-beta |
| |
| name = "l7lb-test-subnetwork" |
| ip_cidr_range = "10.0.0.0/22" |
| region = "us-central1" |
| purpose = "REGIONAL_MANAGED_PROXY" |
| role = "ACTIVE" |
| network = google_compute_network.custom-test.id |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| provider = google-beta |
| |
| name = "l7lb-test-network" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_ipv6&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Ipv6 |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-ipv6" { |
| name = "ipv6-test-subnetwork" |
| |
| ip_cidr_range = "10.0.0.0/22" |
| region = "us-west2" |
| |
| stack_type = "IPV4_IPV6" |
| ipv6_access_type = "EXTERNAL" |
| |
| network = google_compute_network.custom-test.id |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| name = "ipv6-test-network" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_internal_ipv6&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Internal Ipv6 |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-internal-ipv6" { |
| name = "internal-ipv6-test-subnetwork" |
| |
| ip_cidr_range = "10.0.0.0/22" |
| region = "us-west2" |
| |
| stack_type = "IPV4_IPV6" |
| ipv6_access_type = "INTERNAL" |
| |
| network = google_compute_network.custom-test.id |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| name = "internal-ipv6-test-network" |
| auto_create_subnetworks = false |
| enable_ula_internal_ipv6 = true |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_purpose_private_nat&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Purpose Private Nat |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-purpose-private-nat" { |
| provider = google-beta |
| |
| name = "subnet-purpose-test-subnetwork" |
| region = "us-west2" |
| ip_cidr_range = "192.168.1.0/24" |
| purpose = "PRIVATE_NAT" |
| network = google_compute_network.custom-test.id |
| } |
| |
| resource "google_compute_network" "custom-test" { |
| provider = google-beta |
| |
| name = "subnet-purpose-test-network" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_cidr_overlap&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Cidr Overlap |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-cidr-overlap" { |
| provider = google-beta |
| |
| name = "subnet-cidr-overlap" |
| region = "us-west2" |
| ip_cidr_range = "192.168.1.0/24" |
| allow_subnet_cidr_routes_overlap = true |
| network = google_compute_network.net-cidr-overlap.id |
| } |
| |
| resource "google_compute_network" "net-cidr-overlap" { |
| provider = google-beta |
| |
| name = "net-cidr-overlap" |
| auto_create_subnetworks = false |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_reserved_internal_range&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Reserved Internal Range |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-reserved-internal-range" { |
| provider = google-beta |
| name = "subnetwork-reserved-internal-range" |
| region = "us-central1" |
| network = google_compute_network.default.id |
| reserved_internal_range = "networkconnectivity.googleapis.com/${google_network_connectivity_internal_range.reserved.id}" |
| } |
| |
| resource "google_compute_network" "default" { |
| provider = google-beta |
| name = "network-reserved-internal-range" |
| auto_create_subnetworks = false |
| } |
| |
| resource "google_network_connectivity_internal_range" "reserved" { |
| provider = google-beta |
| name = "reserved" |
| network = google_compute_network.default.id |
| usage = "FOR_VPC" |
| peering = "FOR_SELF" |
| prefix_length = 24 |
| target_cidr_range = [ |
| "10.0.0.0/8" |
| ] |
| } |
| ``` |
| <div class = "oics-button" style="float: right; margin: 0 0 -15px"> |
| <a href="https://console.cloud.google.com/cloudshell/open?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Fterraform-google-modules%2Fdocs-examples.git&cloudshell_image=gcr.io%2Fcloudshell-images%2Fcloudshell%3Alatest&cloudshell_print=.%2Fmotd&cloudshell_tutorial=.%2Ftutorial.md&cloudshell_working_dir=subnetwork_reserved_secondary_range&open_in_editor=main.tf" target="_blank"> |
| <img alt="Open in Cloud Shell" src="//gstatic.com/cloudssh/images/open-btn.svg" style="max-height: 44px; margin: 32px auto; max-width: 100%;"> |
| </a> |
| </div> |
| ## Example Usage - Subnetwork Reserved Secondary Range |
| |
| |
| ```hcl |
| resource "google_compute_subnetwork" "subnetwork-reserved-secondary-range" { |
| provider = google-beta |
| name = "subnetwork-reserved-secondary-range" |
| region = "us-central1" |
| network = google_compute_network.default.id |
| reserved_internal_range = "networkconnectivity.googleapis.com/${google_network_connectivity_internal_range.reserved.id}" |
| |
| secondary_ip_range { |
| range_name = "secondary" |
| reserved_internal_range = "networkconnectivity.googleapis.com/${google_network_connectivity_internal_range.reserved_secondary.id}" |
| } |
| } |
| |
| resource "google_compute_network" "default" { |
| provider = google-beta |
| name = "network-reserved-secondary-range" |
| auto_create_subnetworks = false |
| } |
| |
| resource "google_network_connectivity_internal_range" "reserved" { |
| provider = google-beta |
| name = "reserved" |
| network = google_compute_network.default.id |
| usage = "FOR_VPC" |
| peering = "FOR_SELF" |
| prefix_length = 24 |
| target_cidr_range = [ |
| "10.0.0.0/8" |
| ] |
| } |
| |
| resource "google_network_connectivity_internal_range" "reserved_secondary" { |
| provider = google-beta |
| name = "reserved-secondary" |
| network = google_compute_network.default.id |
| usage = "FOR_VPC" |
| peering = "FOR_SELF" |
| prefix_length = 16 |
| target_cidr_range = [ |
| "10.0.0.0/8" |
| ] |
| } |
| ``` |
| |
| ## Argument Reference |
| |
| The following arguments are supported: |
| |
| |
| * `name` - |
| (Required) |
| The name of the resource, provided by the client when initially |
| creating the resource. The name must be 1-63 characters long, and |
| comply with RFC1035. Specifically, the name must be 1-63 characters |
| long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which |
| means the first character must be a lowercase letter, and all |
| following characters must be a dash, lowercase letter, or digit, |
| except the last character, which cannot be a dash. |
| |
| * `network` - |
| (Required) |
| The network this subnet belongs to. |
| Only networks that are in the distributed mode can have subnetworks. |
| |
| |
| - - - |
| |
| |
| * `description` - |
| (Optional) |
| An optional description of this resource. Provide this property when |
| you create the resource. This field can be set only at resource |
| creation time. |
| |
| * `ip_cidr_range` - |
| (Optional) |
| The range of internal addresses that are owned by this subnetwork. |
| Provide this property when you create the subnetwork. For example, |
| 10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and |
| non-overlapping within a network. Only IPv4 is supported. |
| Field is optional when `reserved_internal_range` is defined, otherwise required. |
| |
| * `reserved_internal_range` - |
| (Optional) |
| The ID of the reserved internal range. Must be prefixed with `networkconnectivity.googleapis.com` |
| E.g. `networkconnectivity.googleapis.com/projects/{project}/locations/global/internalRanges/{rangeId}` |
| |
| * `purpose` - |
| (Optional) |
| The purpose of the resource. This field can be either `PRIVATE_RFC_1918`, `REGIONAL_MANAGED_PROXY`, `GLOBAL_MANAGED_PROXY`, `PRIVATE_SERVICE_CONNECT` or `PRIVATE_NAT`([Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)). |
| A subnet with purpose set to `REGIONAL_MANAGED_PROXY` is a user-created subnetwork that is reserved for regional Envoy-based load balancers. |
| A subnetwork in a given region with purpose set to `GLOBAL_MANAGED_PROXY` is a proxy-only subnet and is shared between all the cross-regional Envoy-based load balancers. |
| A subnetwork with purpose set to `PRIVATE_SERVICE_CONNECT` reserves the subnet for hosting a Private Service Connect published service. |
| A subnetwork with purpose set to `PRIVATE_NAT` is used as source range for Private NAT gateways. |
| Note that `REGIONAL_MANAGED_PROXY` is the preferred setting for all regional Envoy load balancers. |
| If unspecified, the purpose defaults to `PRIVATE_RFC_1918`. |
| |
| * `role` - |
| (Optional) |
| The role of subnetwork. |
| Currently, this field is only used when `purpose` is `REGIONAL_MANAGED_PROXY`. |
| The value can be set to `ACTIVE` or `BACKUP`. |
| An `ACTIVE` subnetwork is one that is currently being used for Envoy-based load balancers in a region. |
| A `BACKUP` subnetwork is one that is ready to be promoted to `ACTIVE` or is currently draining. |
| Possible values are: `ACTIVE`, `BACKUP`. |
| |
| * `secondary_ip_range` - |
| (Optional) |
| An array of configurations for secondary IP ranges for VM instances |
| contained in this subnetwork. The primary IP of such VM must belong |
| to the primary ipCidrRange of the subnetwork. The alias IPs may belong |
| to either primary or secondary ranges. |
| **Note**: This field uses [attr-as-block mode](https://www.terraform.io/docs/configuration/attr-as-blocks.html) to avoid |
| breaking users during the 0.12 upgrade. To explicitly send a list of zero objects, |
| set `send_secondary_ip_range_if_empty = true` |
| Structure is [documented below](#nested_secondary_ip_range). |
| |
| * `private_ip_google_access` - |
| (Optional) |
| When enabled, VMs in this subnetwork without external IP addresses can |
| access Google APIs and services by using Private Google Access. |
| |
| * `private_ipv6_google_access` - |
| (Optional) |
| The private IPv6 google access type for the VMs in this subnet. |
| |
| * `region` - |
| (Optional) |
| The GCP region for this subnetwork. |
| |
| * `log_config` - |
| (Optional) |
| This field denotes the VPC flow logging options for this subnetwork. If |
| logging is enabled, logs are exported to Cloud Logging. Flow logging |
| isn't supported if the subnet `purpose` field is set to subnetwork is |
| `REGIONAL_MANAGED_PROXY` or `GLOBAL_MANAGED_PROXY`. |
| Structure is [documented below](#nested_log_config). |
| |
| * `stack_type` - |
| (Optional) |
| The stack type for this subnet to identify whether the IPv6 feature is enabled or not. |
| If not specified IPV4_ONLY will be used. |
| Possible values are: `IPV4_ONLY`, `IPV4_IPV6`. |
| |
| * `ipv6_access_type` - |
| (Optional) |
| The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation |
| or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet |
| cannot enable direct path. |
| Possible values are: `EXTERNAL`, `INTERNAL`. |
| |
| * `external_ipv6_prefix` - |
| (Optional) |
| The range of external IPv6 addresses that are owned by this subnetwork. |
| |
| * `allow_subnet_cidr_routes_overlap` - |
| (Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)) |
| Typically packets destined to IPs within the subnetwork range that do not match |
| existing resources are dropped and prevented from leaving the VPC. |
| Setting this field to true will allow these packets to match dynamic routes injected |
| via BGP even if their destinations match existing subnet ranges. |
| |
| * `project` - (Optional) The ID of the project in which the resource belongs. |
| If it is not provided, the provider project is used. |
| |
| * `send_secondary_ip_range_if_empty` - (Optional) Controls the removal behavior of secondary_ip_range. |
| When false, removing secondary_ip_range from config will not produce a diff as |
| the provider will default to the API's value. |
| When true, the provider will treat removing secondary_ip_range as sending an |
| empty list of secondary IP ranges to the API. |
| Defaults to false. |
| |
| |
| <a name="nested_secondary_ip_range"></a>The `secondary_ip_range` block supports: |
| |
| * `range_name` - |
| (Required) |
| The name associated with this subnetwork secondary range, used |
| when adding an alias IP range to a VM instance. The name must |
| be 1-63 characters long, and comply with RFC1035. The name |
| must be unique within the subnetwork. |
| |
| * `ip_cidr_range` - |
| (Optional) |
| The range of IP addresses belonging to this subnetwork secondary |
| range. Provide this property when you create the subnetwork. |
| Ranges must be unique and non-overlapping with all primary and |
| secondary IP ranges within a network. Only IPv4 is supported. |
| Field is optional when `reserved_internal_range` is defined, otherwise required. |
| |
| * `reserved_internal_range` - |
| (Optional) |
| The ID of the reserved internal range. Must be prefixed with `networkconnectivity.googleapis.com` |
| E.g. `networkconnectivity.googleapis.com/projects/{project}/locations/global/internalRanges/{rangeId}` |
| |
| <a name="nested_log_config"></a>The `log_config` block supports: |
| |
| * `aggregation_interval` - |
| (Optional) |
| Can only be specified if VPC flow logging for this subnetwork is enabled. |
| Toggles the aggregation interval for collecting flow logs. Increasing the |
| interval time will reduce the amount of generated flow logs for long |
| lasting connections. Default is an interval of 5 seconds per connection. |
| Default value is `INTERVAL_5_SEC`. |
| Possible values are: `INTERVAL_5_SEC`, `INTERVAL_30_SEC`, `INTERVAL_1_MIN`, `INTERVAL_5_MIN`, `INTERVAL_10_MIN`, `INTERVAL_15_MIN`. |
| |
| * `flow_sampling` - |
| (Optional) |
| Can only be specified if VPC flow logging for this subnetwork is enabled. |
| The value of the field must be in [0, 1]. Set the sampling rate of VPC |
| flow logs within the subnetwork where 1.0 means all collected logs are |
| reported and 0.0 means no logs are reported. Default is 0.5 which means |
| half of all collected logs are reported. |
| |
| * `metadata` - |
| (Optional) |
| Can only be specified if VPC flow logging for this subnetwork is enabled. |
| Configures whether metadata fields should be added to the reported VPC |
| flow logs. |
| Default value is `INCLUDE_ALL_METADATA`. |
| Possible values are: `EXCLUDE_ALL_METADATA`, `INCLUDE_ALL_METADATA`, `CUSTOM_METADATA`. |
| |
| * `metadata_fields` - |
| (Optional) |
| List of metadata fields that should be added to reported logs. |
| Can only be specified if VPC flow logs for this subnetwork is enabled and "metadata" is set to CUSTOM_METADATA. |
| |
| * `filter_expr` - |
| (Optional) |
| Export filter used to define which VPC flow logs should be logged, as as CEL expression. See |
| https://cloud.google.com/vpc/docs/flow-logs#filtering for details on how to format this field. |
| The default value is 'true', which evaluates to include everything. |
| |
| ## Attributes Reference |
| |
| In addition to the arguments listed above, the following computed attributes are exported: |
| |
| * `id` - an identifier for the resource with format `projects/{{project}}/regions/{{region}}/subnetworks/{{name}}` |
| |
| * `creation_timestamp` - |
| Creation timestamp in RFC3339 text format. |
| |
| * `gateway_address` - |
| The gateway address for default routes to reach destination addresses |
| outside this subnetwork. |
| |
| * `ipv6_cidr_range` - |
| The range of internal IPv6 addresses that are owned by this subnetwork. |
| |
| * `internal_ipv6_prefix` - |
| The internal IPv6 address range that is assigned to this subnetwork. |
| * `self_link` - The URI of the created resource. |
| |
| |
| ## Timeouts |
| |
| This resource provides the following |
| [Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options: |
| |
| - `create` - Default is 20 minutes. |
| - `update` - Default is 20 minutes. |
| - `delete` - Default is 20 minutes. |
| |
| ## Import |
| |
| |
| Subnetwork can be imported using any of these accepted formats: |
| |
| * `projects/{{project}}/regions/{{region}}/subnetworks/{{name}}` |
| * `{{project}}/{{region}}/{{name}}` |
| * `{{region}}/{{name}}` |
| * `{{name}}` |
| |
| |
| In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Subnetwork using one of the formats above. For example: |
| |
| ```tf |
| import { |
| id = "projects/{{project}}/regions/{{region}}/subnetworks/{{name}}" |
| to = google_compute_subnetwork.default |
| } |
| ``` |
| |
| When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), Subnetwork can be imported using one of the formats above. For example: |
| |
| ``` |
| $ terraform import google_compute_subnetwork.default projects/{{project}}/regions/{{region}}/subnetworks/{{name}} |
| $ terraform import google_compute_subnetwork.default {{project}}/{{region}}/{{name}} |
| $ terraform import google_compute_subnetwork.default {{region}}/{{name}} |
| $ terraform import google_compute_subnetwork.default {{name}} |
| ``` |
| |
| ## User Project Overrides |
| |
| This resource supports [User Project Overrides](https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference#user_project_override). |