2014-08-26 23:50:29 +02:00
|
|
|
---
|
|
|
|
layout: "google"
|
|
|
|
page_title: "Google: google_compute_firewall"
|
2015-10-23 16:10:41 +02:00
|
|
|
sidebar_current: "docs-google-compute-firewall"
|
2014-10-22 05:21:56 +02:00
|
|
|
description: |-
|
|
|
|
Manages a firewall resource within GCE.
|
2014-08-26 23:50:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
2015-02-05 11:37:52 +01:00
|
|
|
* `description` - (Optional) Textual description field.
|
|
|
|
|
2014-08-26 23:50:29 +02:00
|
|
|
* `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.
|
|
|
|
|
2015-01-14 18:28:25 +01:00
|
|
|
* `source_ranges` - (Optional) A list of source CIDR ranges that this
|
2014-08-26 23:50:29 +02:00
|
|
|
firewall applies to.
|
|
|
|
|
2015-01-14 18:28:25 +01:00
|
|
|
* `source_tags` - (Optional) A list of source tags that this firewall applies to.
|
2014-09-27 21:42:46 +02:00
|
|
|
|
2015-01-14 18:28:25 +01:00
|
|
|
* `target_tags` - (Optional) A list of target tags that this firewall applies to.
|
2014-08-26 23:50:29 +02:00
|
|
|
|
|
|
|
The `allow` block supports:
|
|
|
|
|
|
|
|
* `protocol` - (Required) The name of the protocol to allow.
|
|
|
|
|
2015-01-14 18:28:25 +01:00
|
|
|
* `ports` - (Optional) List of ports and/or port ranges to allow. This can
|
2014-08-26 23:50:29 +02:00
|
|
|
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.
|