google_app_engine_application

Allows creation and management of an App Engine application.

Example Usage

resource "google_project" "my_project" {
  name       = "My Project"
  project_id = "your-project-id"
  org_id     = "1234567"
}

resource "google_app_engine_application" "app" {
  project     = google_project.my_project.project_id
  location_id = "us-central"
}

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

Applications can be imported using the ID of the project the application belongs to, e.g.

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

import {
  id = "{{project-id}}"
  to = google_app_engine_application.default
}

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

$ terraform import google_app_engine_application.default {{project-id}}