google_compute_project_default_network_tier

Configures the Google Compute Engine Default Network Tier for a project.

For more information, see, the Project API documentation.

Example Usage

resource "google_compute_project_default_network_tier" "default" {
  network_tier = "PREMIUM"
}

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: configuration options:

Import

Compute Engine Default Network Tier can be imported using any of these accepted formats:

In Terraform v1.5.0 and later, use an import block to import Compute Engine Default Network Tier using one of the formats above. For example:

import {
  id = "{{project_id}}"
  to = google_compute_project_default_network_tier.default
}

When using the terraform import command, Compute Engine Default Network Tier can be imported using one of the formats above. For example:

$ terraform import google_compute_project_default_network_tier.default {{project_id}}