Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "google_app_engine_application" "c" {
project = "gcp-test-project"
location_id = "us-central"
database_type = "CLOUD_FIRESTORE"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "google_app_engine_application" "nc" {
project = "gcp-test-project"
location_id = "us-central"
database_type = "CLOUD_DATASTORE_COMPATIBILITY"
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "google_app_engine_application" "c" {
project = "gcp-project-12345"
location_id = "australia-southeast1"

feature_settings {
split_health_checks = true
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "google_app_engine_application" "nc" {
project = "gcp-project-12345"
location_id = "australia-southeast1"

feature_settings {
split_health_checks = false
}
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "google_app_engine_application" "c" {
project = "my-project"
location_id = "us-central"

iap {
oauth2_client_id = "12345.apps.googleusercontent.com"
oauth2_client_secret = "secret-value"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "google_app_engine_application" "nc" {
project = "my-project"
location_id = "us-central"

iap {
oauth2_client_id = "incorrect-client-id.apps.googleusercontent.com"
oauth2_client_secret = "secret-value"
}
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "google_app_engine_application" "c" {
project = "gcp-project-12345"
location_id = "australia-southeast1"

iap {
oauth2_client_id = "12345.apps.googleusercontent.com"
oauth2_client_secret = "GOCSPX-abc123def456_actual_secret"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "google_app_engine_application" "nc" {
project = "gcp-project-12345"
location_id = "australia-southeast1"

iap {
oauth2_client_id = "12345.apps.googleusercontent.com"
oauth2_client_secret = "12345"
}
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions inputs/gcp/app_engine/app_engine_application/location_id/c.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
resource "google_app_engine_application" "c" {
project = "gcp-test-project"
location_id = "australia-southeast1"
}
11 changes: 11 additions & 0 deletions inputs/gcp/app_engine/app_engine_application/location_id/config.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
resource "google_app_engine_application" "nc" {
project = "gcp-test-project"
location_id = "europe-west1"
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions inputs/gcp/app_engine/app_engine_application/project/c.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
resource "google_app_engine_application" "c" {
project = "gcp-project-12345"
location_id = "australia-southeast1"
}
11 changes: 11 additions & 0 deletions inputs/gcp/app_engine/app_engine_application/project/config.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
6 changes: 6 additions & 0 deletions inputs/gcp/app_engine/app_engine_application/project/nc.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Describe your resource type here
# Keep "nc" as the name to indicate that this resource and its attributes are non-compliant
resource "google_app_engine_application" "nc" {
project = "invalid-project"
location_id = "australia-southeast1"
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "google_app_engine_application" "c" {
project = "gcp-project-12345"
location_id = "australia-southeast1"
serving_status = "SERVING"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##### DO NOT EDIT ######

terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
}

provider "google" {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "google_app_engine_application" "nc" {
project = "gcp-project-12345"
location_id = "australia-southeast1"
serving_status = "USER_DISABLED"
}
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "google_app_engine_application_url_dispatch_rules" "c" {
project = "gcp-project-12345"
dispatch_rules {
domain = "hardhat.pythonanywhere.com"
path = "/*"
service = "default"
}
}
Loading
Loading