terraform-provider-google/r/compute_firewall.html.markdown
Emil Hessman 0daf28f350 docs: consistent use of array configuration syntax
The Terraform configuration syntax defines what arrays are.
Use the word array consistently throughout the documentation
instead of list.

The corresponding JSON datatype is called array as well, and
since the Terraform configuration syntax is interoperable with
JSON it makes sense to use the term array to describe them.
2015-01-13 06:59:12 +01:00

1.7 KiB

layout page_title sidebar_current description
google Google: google_compute_firewall docs-google-resource-firewall Manages a firewall resource within GCE.

google_compute_firewall

Manages a firewall resource within GCE.

Example Usage

resource "google_compute_firewall" "default" {
	name = "test"
	network = "${google_compute_network.other.name}"

	allow {
		protocol = "icmp"
	}

	allow {
		protocol = "tcp"
		ports = ["80", "8080", "1000-2000"]
	}

	source_tags = ["web"]
}

Argument Reference

The following arguments are supported:

  • name - (Required) A unique name for the resource, required by GCE. Changing this forces a new resource to be created.

  • network - (Required) The name of the network to attach this firewall to.

  • allow - (Required) Can be specified multiple times for each allow rule. Each allow block supports fields documented below.

  • source_ranges - (Optional) An array of source CIDR ranges that this firewall applies to.

  • source_tags - (Optional) An array of source tags that this firewall applies to.

  • target_tags - (Optional) An array of target tags that this firewall applies to.

The allow block supports:

  • protocol - (Required) The name of the protocol to allow.

  • ports - (Optional) Array of ports and/or port ranges to allow. This can only be specified if the protocol is TCP or UDP.

Attributes Reference

The following attributes are exported:

  • name - The name of the resource.
  • network - The network that this resource is attached to.
  • source_ranges - The CIDR block ranges this firewall applies to.
  • source_tags - The tags that this firewall applies to.