google_network_security_firewall_endpoint

A Firewall endpoint is a Cloud Firewall resource that enables layer 7 advanced protection capabilities, such as intrusion prevention, in your network.

To get more information about FirewallEndpoint, see:

Example Usage - Network Security Firewall Endpoint Basic

resource "google_network_security_firewall_endpoint" "default" {
  provider           = google-beta
  name               = "my-firewall-endpoint"
  parent             = "organizations/123456789"
  location           = "us-central1-a"
  billing_project_id = "my-project-name"

  labels = {
    foo = "bar"
  }
}

Argument Reference

The following arguments are supported:


Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

Timeouts

This resource provides the following Timeouts configuration options:

Import

FirewallEndpoint can be imported using any of these accepted formats:

In Terraform v1.5.0 and later, use an import block to import FirewallEndpoint using one of the formats above. For example:

import {
  id = "{{parent}}/locations/{{location}}/firewallEndpoints/{{name}}"
  to = google_network_security_firewall_endpoint.default
}

When using the terraform import command, FirewallEndpoint can be imported using one of the formats above. For example:

$ terraform import google_network_security_firewall_endpoint.default {{parent}}/locations/{{location}}/firewallEndpoints/{{name}}