diff --git a/mmv1/templates/terraform/resource.html.markdown.erb b/mmv1/templates/terraform/resource.html.markdown.erb index 05f1326ec374..3e152f57f095 100644 --- a/mmv1/templates/terraform/resource.html.markdown.erb +++ b/mmv1/templates/terraform/resource.html.markdown.erb @@ -50,9 +50,7 @@ --- <%= lines(autogen_notice(:yaml, pwd)) -%> subcategory: "<%= tf_subcategory -%>" -layout: "google" page_title: "Google: <%= terraform_name -%>" -sidebar_current: "docs-<%= terraform_name.gsub("_", "-") -%>" description: |- <%= indent(object.description.first_sentence, 2) %> --- diff --git a/mmv1/templates/terraform/resource_iam.html.markdown.erb b/mmv1/templates/terraform/resource_iam.html.markdown.erb index 71bfbccda48f..148397856e08 100644 --- a/mmv1/templates/terraform/resource_iam.html.markdown.erb +++ b/mmv1/templates/terraform/resource_iam.html.markdown.erb @@ -52,9 +52,7 @@ --- <%= lines(autogen_notice(:yaml, pwd)) -%> subcategory: "<%= tf_subcategory -%>" -layout: "google" page_title: "Google: <%= resource_ns_iam -%>" -sidebar_current: "docs-<%= resource_ns_iam.gsub("_", "-") -%>" description: |- Collection of resources to manage IAM policy for <%= product.display_name -%> <%= object.name %> --- diff --git a/mmv1/third_party/terraform/scripts/sidebar/sidebar.go b/mmv1/third_party/terraform/scripts/sidebar/sidebar.go deleted file mode 100644 index d51f059ab586..000000000000 --- a/mmv1/third_party/terraform/scripts/sidebar/sidebar.go +++ /dev/null @@ -1,112 +0,0 @@ -//go:generate go run sidebar.go -package main - -import ( - "io/ioutil" - "log" - "os" - "path/filepath" - "regexp" - "runtime" - "strings" - "text/template" -) - -type Entry struct { - Filename string - Product string - Resource string -} - -type Entries struct { - Resources []Entry - DataSources []Entry -} - -func main() { - _, scriptPath, _, ok := runtime.Caller(0) - if !ok { - log.Fatal("Could not get current working directory") - } - tpgDir := scriptPath - for !strings.HasPrefix(filepath.Base(tpgDir), "terraform-provider-") && tpgDir != "/" { - tpgDir = filepath.Clean(tpgDir + "/..") - } - if tpgDir == "/" { - log.Fatal("Script was run outside of google provider directory") - } - - resourcesByProduct, err := entriesByProduct(tpgDir + "/website/docs/r") - if err != nil { - panic(err) - } - dataSourcesByProduct, err := entriesByProduct(tpgDir + "/website/docs/d") - if err != nil { - panic(err) - } - allEntriesByProduct := make(map[string]Entries) - for p, e := range resourcesByProduct { - v := allEntriesByProduct[p] - v.Resources = e - allEntriesByProduct[p] = v - } - for p, e := range dataSourcesByProduct { - v := allEntriesByProduct[p] - v.DataSources = e - allEntriesByProduct[p] = v - } - - tmpl, err := template.ParseFiles(tpgDir + "/website/google.erb.tmpl") - if err != nil { - panic(err) - } - f, err := os.Create(tpgDir + "/website/google.erb") - if err != nil { - panic(err) - } - defer f.Close() - err = tmpl.Execute(f, allEntriesByProduct) - if err != nil { - panic(err) - } -} - -func entriesByProduct(dir string) (map[string][]Entry, error) { - d, err := ioutil.ReadDir(dir) - if err != nil { - return nil, err - } - - entriesByProduct := make(map[string][]Entry) - for _, f := range d { - entry, err := getEntry(dir, f.Name()) - if err != nil { - return nil, err - } - entriesByProduct[entry.Product] = append(entriesByProduct[entry.Product], entry) - } - - return entriesByProduct, nil -} - -func getEntry(dir, filename string) (Entry, error) { - file, err := ioutil.ReadFile(dir + "/" + filename) - if err != nil { - return Entry{}, err - } - - return Entry{ - Filename: strings.TrimSuffix(filename, ".markdown"), - Product: findRegex(file, `subcategory: "(.*)"`), - Resource: findRegex(file, `page_title: "Google: (.*)"`), - }, nil -} - -func findRegex(contents []byte, regex string) string { - r := regexp.MustCompile(regex) - sm := r.FindStringSubmatch(string(contents)) - if len(sm) > 1 { - return sm[1] - } - return "" -} diff --git a/mmv1/third_party/terraform/website/docs/d/access_approval_folder_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/access_approval_folder_service_account.html.markdown index 1394ca46a63b..2cd212833de9 100644 --- a/mmv1/third_party/terraform/website/docs/d/access_approval_folder_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/access_approval_folder_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Access Approval" -layout: "google" page_title: "Google: google_access_approval_folder_service_account" -sidebar_current: "docs-google-datasource-access-approval-folder-service-account" description: |- Get the email address of a folder's Access Approval service account. --- diff --git a/mmv1/third_party/terraform/website/docs/d/access_approval_organization_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/access_approval_organization_service_account.html.markdown index 590c0b7d01e6..f913d3c9a842 100644 --- a/mmv1/third_party/terraform/website/docs/d/access_approval_organization_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/access_approval_organization_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Access Approval" -layout: "google" page_title: "Google: google_access_approval_organization_service_account" -sidebar_current: "docs-google-datasource-access-approval-organization-service-account" description: |- Get the email address of an organization's Access Approval service account. --- diff --git a/mmv1/third_party/terraform/website/docs/d/access_approval_project_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/access_approval_project_service_account.html.markdown index e36798a2c330..8a426fd61eb7 100644 --- a/mmv1/third_party/terraform/website/docs/d/access_approval_project_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/access_approval_project_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Access Approval" -layout: "google" page_title: "Google: google_access_approval_project_service_account" -sidebar_current: "docs-google-datasource-access-approval-project-service-account" description: |- Get the email address of a project's Access Approval service account. --- diff --git a/mmv1/third_party/terraform/website/docs/d/active_folder.html.markdown b/mmv1/third_party/terraform/website/docs/d/active_folder.html.markdown index 9053e831fb99..979351dfb1d7 100644 --- a/mmv1/third_party/terraform/website/docs/d/active_folder.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/active_folder.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_active_folder" -sidebar_current: "docs-google-datasource-active-folder" description: |- Get a folder within GCP. --- diff --git a/mmv1/third_party/terraform/website/docs/d/app_engine_default_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/app_engine_default_service_account.html.markdown index 2c28e8a790af..9c1ac3390762 100644 --- a/mmv1/third_party/terraform/website/docs/d/app_engine_default_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/app_engine_default_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "App Engine" -layout: "google" page_title: "Google: google_app_engine_default_service_account" -sidebar_current: "docs-google-datasource-app_engine-default-service-account" description: |- Retrieve the default App Engine service account used in this project --- diff --git a/mmv1/third_party/terraform/website/docs/d/bigquery_default_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/bigquery_default_service_account.html.markdown index 2b7d5311cf93..717b0a3f1a4a 100644 --- a/mmv1/third_party/terraform/website/docs/d/bigquery_default_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/bigquery_default_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "BigQuery" -layout: "google" page_title: "Google: google_bigquery_default_service_account" -sidebar_current: "docs-google-datasource-bigquery-default-service-account" description: |- Get the email address of the project's BigQuery service account --- diff --git a/mmv1/third_party/terraform/website/docs/d/billing_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/billing_account.html.markdown index 185ed03c6dc5..783c14b7f5cf 100644 --- a/mmv1/third_party/terraform/website/docs/d/billing_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/billing_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Billing" -layout: "google" page_title: "Google: google_billing_account" -sidebar_current: "docs-google-datasource-billing-account" description: |- Get information about a Google Billing Account. --- diff --git a/mmv1/third_party/terraform/website/docs/d/client_config.html.markdown b/mmv1/third_party/terraform/website/docs/d/client_config.html.markdown index 4d03685fb6be..51f9c7c6cd1c 100644 --- a/mmv1/third_party/terraform/website/docs/d/client_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/client_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_client_config" -sidebar_current: "docs-google-datasource-client-config" description: |- Get information about the configuration of the Google Cloud provider. --- diff --git a/mmv1/third_party/terraform/website/docs/d/client_openid_userinfo.html.markdown b/mmv1/third_party/terraform/website/docs/d/client_openid_userinfo.html.markdown index aca94ca7d61c..a98b0e019baf 100644 --- a/mmv1/third_party/terraform/website/docs/d/client_openid_userinfo.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/client_openid_userinfo.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_client_openid_userinfo" -sidebar_current: "docs-google-datasource-client-openid-userinfo" description: |- Get OpenID userinfo about the credentials used with the Google provider, specifically the email. --- diff --git a/mmv1/third_party/terraform/website/docs/d/cloud_identity_group_membership.html.markdown b/mmv1/third_party/terraform/website/docs/d/cloud_identity_group_membership.html.markdown index e90975a810a1..3a58f74bd6f8 100644 --- a/mmv1/third_party/terraform/website/docs/d/cloud_identity_group_membership.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/cloud_identity_group_membership.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Identity" -layout: "google" page_title: "Google: google_cloud_identity_group_memberships" -sidebar_current: "docs-google-datasource-cloud-identity-group-memberships" description: |- Get list of the Cloud Identity Group Memberships within a Group. --- diff --git a/mmv1/third_party/terraform/website/docs/d/cloud_identity_groups.html.markdown b/mmv1/third_party/terraform/website/docs/d/cloud_identity_groups.html.markdown index 864d1b212631..c2c7e06a6356 100644 --- a/mmv1/third_party/terraform/website/docs/d/cloud_identity_groups.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/cloud_identity_groups.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Identity" -layout: "google" page_title: "Google: google_cloud_identity_groups" -sidebar_current: "docs-google-datasource-cloud-identity-groups" description: |- Get list of the Cloud Identity Groups under a customer or namespace. --- diff --git a/mmv1/third_party/terraform/website/docs/d/cloud_run_locations.html.markdown b/mmv1/third_party/terraform/website/docs/d/cloud_run_locations.html.markdown index e6ea97360547..f594e4ef81b3 100644 --- a/mmv1/third_party/terraform/website/docs/d/cloud_run_locations.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/cloud_run_locations.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Run" -layout: "google" page_title: "Google: google_cloud_run_locations" -sidebar_current: "docs-google-datasource-cloud-run-locations" description: |- Get Cloud Run locations available for a project. --- diff --git a/mmv1/third_party/terraform/website/docs/d/cloud_run_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/cloud_run_service.html.markdown index 9fdff7b21941..4185a83376a1 100644 --- a/mmv1/third_party/terraform/website/docs/d/cloud_run_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/cloud_run_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Run" -layout: "google" page_title: "Google: google_cloud_run_service" -sidebar_current: "docs-google-datasource-cloud-run-service" description: |- Get information about a Google Cloud Run Service. --- diff --git a/mmv1/third_party/terraform/website/docs/d/cloudfunctions_function.html.markdown b/mmv1/third_party/terraform/website/docs/d/cloudfunctions_function.html.markdown index 429dffafab97..a483822845dc 100644 --- a/mmv1/third_party/terraform/website/docs/d/cloudfunctions_function.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/cloudfunctions_function.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Functions" -layout: "google" page_title: "Google: google_cloudfunctions_function" -sidebar_current: "docs-google-datasource-cloudfunctions-function" description: |- Get information about a Google Cloud Function. --- diff --git a/mmv1/third_party/terraform/website/docs/d/composer_environment.html.markdown b/mmv1/third_party/terraform/website/docs/d/composer_environment.html.markdown index b96d60a9528e..8e54bcc5c204 100644 --- a/mmv1/third_party/terraform/website/docs/d/composer_environment.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/composer_environment.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Composer" -layout: "google" page_title: "Google: google_composer_environment" -sidebar_current: "docs-google-datasource-composer-environment" description: |- Provides Cloud Composer environment configuration data. --- diff --git a/mmv1/third_party/terraform/website/docs/d/composer_image_versions.html.markdown b/mmv1/third_party/terraform/website/docs/d/composer_image_versions.html.markdown index b4d339878290..b6a244842b4e 100644 --- a/mmv1/third_party/terraform/website/docs/d/composer_image_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/composer_image_versions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Composer" -layout: "google" page_title: "Google: google_composer_image_versions" -sidebar_current: "docs-google-datasource-composer-image-versions" description: |- Provides available Cloud Composer versions. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_address.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_address.html.markdown index 656b71cb4b64..f62139e9382d 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_address.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_address.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_address" -sidebar_current: "docs-google-datasource-compute-address" description: |- Get the IP address from a static address. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_backend_bucket.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_backend_bucket.html.markdown index eeaa0e799032..e8b68f25733b 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_backend_bucket.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_backend_bucket.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_backend_bucket" -sidebar_current: "docs-google-datasource-compute-backend-bucket" description: |- Get information about a BackendBucket. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_backend_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_backend_service.html.markdown index 64405bcc4eb6..125c0b301a34 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_backend_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_backend_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_backend_service" -sidebar_current: "docs-google-datasource-compute-backend-service" description: |- Get information about a Backend Service. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_default_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_default_service_account.html.markdown index 55960f08768a..bbed1375c16b 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_default_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_default_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_default_service_account" -sidebar_current: "docs-google-datasource-compute-default-service-account" description: |- Retrieve default service account used by VMs running in this project --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_disk.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_disk.html.markdown index d10b528217af..e0b58113348d 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_disk.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_disk.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_disk" -sidebar_current: "docs-google-datasource-compute-disk" description: |- Get information about a Google Compute Persistent disks. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_forwarding_rule.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_forwarding_rule.html.markdown index 848db49b7b18..f9f04ed118b8 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_forwarding_rule.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_forwarding_rule.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_forwarding_rule" -sidebar_current: "docs-google-datasource-compute-forwarding-rule" description: |- Get a regional forwarding rule within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_global_address.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_global_address.html.markdown index 4f238efe6039..9c181b685b54 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_global_address.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_global_address.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_global_address" -sidebar_current: "docs-google-datasource-compute-global-address" description: |- Get the IP address from a static address reserved for a Global Forwarding Rule. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_global_forwarding_rule.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_global_forwarding_rule.html.markdown index fdcbacd0f81f..92a61d9b4755 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_global_forwarding_rule.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_global_forwarding_rule.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_global_forwarding_rule" -sidebar_current: "docs-google-datasource-compute-global_forwarding-rule" description: |- Get a global forwarding rule within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_ha_vpn_gateway.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_ha_vpn_gateway.html.markdown index d9c628170910..68d98eacfaf7 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_ha_vpn_gateway.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_ha_vpn_gateway.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_ha_vpn_gateway" -sidebar_current: "docs-google-datasource-compute-ha-vpn-gateway" description: |- Get a HA VPN Gateway within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_health_check.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_health_check.html.markdown index 077664e5e833..8adc8e7636d2 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_health_check.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_health_check.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_health_check" -sidebar_current: "docs-google-datasource-compute-health-check" description: |- Get information about a HealthCheck. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_image.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_image.html.markdown index e980e537bb1b..670033273930 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_image.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_image.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_image" -sidebar_current: "docs-google-datasource-compute-image" description: |- Get information about a Google Compute Image. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_instance.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_instance.html.markdown index 6c3715bea569..32faae81360b 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance" -sidebar_current: "docs-google-datasource-compute-instance-x" description: |- Get a VM instance within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_instance_group.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_instance_group.html.markdown index c0ccaa30895b..0bb032263bd4 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_instance_group.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_instance_group.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_group" -sidebar_current: "docs-google-datasource-compute-instance-group" description: |- Get a Compute Instance Group within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_instance_serial_port.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_instance_serial_port.html.markdown index af60374874d5..82030e170d6b 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_instance_serial_port.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_instance_serial_port.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_serial_port" -sidebar_current: "docs-google-datasource-compute-instance-serial-port" description: |- Get the serial port output from a Compute Instance. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_instance_template.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_instance_template.html.markdown index a79164ef3493..ba892bc191c7 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_instance_template.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_instance_template.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_template" -sidebar_current: "docs-google-datasource-compute-instance-template" description: |- Get a VM instance template within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_lb_ip_ranges.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_lb_ip_ranges.html.markdown index d0226e0ec4b4..be060829968c 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_lb_ip_ranges.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_lb_ip_ranges.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_lb_ip_ranges" -sidebar_current: "docs-google-datasource-compute-lb-ip-ranges" description: |- Get information about the IP ranges used when health-checking load balancers. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_network.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_network.html.markdown index 21f2112e0265..d24b302fddfb 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_network.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_network.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_network" -sidebar_current: "docs-google-datasource-compute-network" description: |- Get a network within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_network_endpoint_group.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_network_endpoint_group.html.markdown index 8aedcf36b0d0..4c2d4ead36f9 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_network_endpoint_group.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_network_endpoint_group.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_network_endpoint_group" -sidebar_current: "docs-google-datasource-compute-network-endpoint-group" description: |- Retrieve Network Endpoint Group's details. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_node_types.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_node_types.html.markdown index 5a7d8299ce42..4f2ed2bffad6 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_node_types.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_node_types.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_node_types" -sidebar_current: "docs-google-datasource-compute-node-types" description: |- Provides list of available Google Compute Engine node types for sole-tenant nodes. diff --git a/mmv1/third_party/terraform/website/docs/d/compute_region_instance_group.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_region_instance_group.html.markdown index 19b0090452f4..e7e73ee21a5c 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_region_instance_group.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_region_instance_group.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_region_instance_group" -sidebar_current: "docs-google-datasource-compute-region-instance-group" description: |- Get the instances inside a Compute Region Instance Group within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_region_ssl_certificate.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_region_ssl_certificate.html.markdown index 7fe3725d3a69..7dae9b0d1b66 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_region_ssl_certificate.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_region_ssl_certificate.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_region_ssl_certificate" -sidebar_current: "docs-google-datasource-compute-region-ssl-certificate" description: |- Get info about a Regional Google Compute SSL Certificate. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_regions.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_regions.html.markdown index a91f4e6fde34..c6467ff37faf 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_regions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_regions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_regions" -sidebar_current: "docs-google-datasource-compute-regions" description: |- Provides a list of available Google Compute regions --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_resource_policy.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_resource_policy.html.markdown index 212135092d9d..cf19ce5c7fe9 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_resource_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_resource_policy.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Compute Engine" page_title: "Google: google_compute_resource_policy" -sidebar_current: "docs-google-datasource-compute-resource-policy" description: |- Provide access to a Resource Policy's attributes --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_router.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_router.html.markdown index 5ec2208b2b79..02f1d981f46b 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_router.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_router.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Compute Engine" page_title: "Google: google_compute_router" -sidebar_current: "docs-google-datasource-compute-router" description: |- Get a Cloud Router within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_router_status.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_router_status.html.markdown index 362d49743d64..388e9ed1d3dd 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_router_status.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_router_status.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Compute Engine" page_title: "Google: google_compute_router_status" -sidebar_current: "docs-google-datasource-compute-router-status" description: |- Get a Cloud Router's Status. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_ssl_certificate.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_ssl_certificate.html.markdown index daa3d6c7d4ac..d8df97406b37 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_ssl_certificate.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_ssl_certificate.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_ssl_certificate" -sidebar_current: "docs-google-datasource-compute-ssl-certificate" description: |- Get info about a Google Compute SSL Certificate. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_ssl_policy.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_ssl_policy.html.markdown index 8b4f6a0855c8..004319f3eafa 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_ssl_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_ssl_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_ssl_policy" -sidebar_current: "docs-google-datasource-compute-ssl-policy" description: |- Gets an SSL Policy within GCE, for use with Target HTTPS and Target SSL Proxies. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_subnetwork.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_subnetwork.html.markdown index 529d0efc0ec0..381111759855 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_subnetwork.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_subnetwork.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_subnetwork" -sidebar_current: "docs-google-datasource-compute-subnetwork" description: |- Get a subnetwork within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_vpn_gateway.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_vpn_gateway.html.markdown index f90e29c3383a..301c2df2347e 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_vpn_gateway.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_vpn_gateway.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_vpn_gateway" -sidebar_current: "docs-google-datasource-compute-vpn-gateway" description: |- Get a VPN gateway within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/d/compute_zones.html.markdown b/mmv1/third_party/terraform/website/docs/d/compute_zones.html.markdown index cf6d3bc47c66..6af77814b7db 100644 --- a/mmv1/third_party/terraform/website/docs/d/compute_zones.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/compute_zones.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_zones" -sidebar_current: "docs-google-datasource-compute-zones" description: |- Provides a list of available Google Compute zones --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_aws_versions.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_aws_versions.html.markdown index 861309e91cf3..ba9dfab964f0 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_aws_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_aws_versions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "ContainerAws" -layout: "google" page_title: "Google: google_container_aws_versions" -sidebar_current: "docs-google-datasource-container-aws-versions" description: |- Provides lists of available Kubernetes versions for the Container AWS resources. --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_azure_versions.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_azure_versions.html.markdown index 5b3bc107a911..571c6ac384ef 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_azure_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_azure_versions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "ContainerAzure" -layout: "google" page_title: "Google: google_container_azure_versions" -sidebar_current: "docs-google-datasource-container-azure-versions" description: |- Provides lists of available Kubernetes versions for the Container Azure resources. --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_cluster.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_cluster.html.markdown index 9638ceb59388..3f02609f9e34 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_cluster.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_cluster.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Kubernetes (Container) Engine" -layout: "google" page_title: "Google: google_container_cluster" -sidebar_current: "docs-google-datasource-container-cluster" description: |- Get info about a Google Kubernetes Engine cluster. --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_engine_versions.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_engine_versions.html.markdown index 2f47211a0f10..8eba79f79c04 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_engine_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_engine_versions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Kubernetes (Container) Engine" -layout: "google" page_title: "Google: google_container_engine_versions" -sidebar_current: "docs-google-datasource-container-versions" description: |- Provides lists of available Google Kubernetes Engine versions for masters and nodes. --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_registry_image.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_registry_image.html.markdown index 799646d76cd3..f40635bef819 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_registry_image.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_registry_image.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Container Registry" -layout: "google" page_title: "Google: google_container_registry_image" -sidebar_current: "docs-google-datasource-container-image" description: |- Get URLs for a given project's container registry image. --- diff --git a/mmv1/third_party/terraform/website/docs/d/container_registry_repository.html.markdown b/mmv1/third_party/terraform/website/docs/d/container_registry_repository.html.markdown index 3fabcaa37382..0649c0cb50d3 100644 --- a/mmv1/third_party/terraform/website/docs/d/container_registry_repository.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/container_registry_repository.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Container Registry" -layout: "google" page_title: "Google: google_container_registry_repository" -sidebar_current: "docs-google-datasource-container-repo" description: |- Get URLs for a given project's container registry repository. --- diff --git a/mmv1/third_party/terraform/website/docs/d/data_source_dataproc_metastore_service.markdown b/mmv1/third_party/terraform/website/docs/d/data_source_dataproc_metastore_service.markdown index 4a8297324980..4c07c14dad16 100644 --- a/mmv1/third_party/terraform/website/docs/d/data_source_dataproc_metastore_service.markdown +++ b/mmv1/third_party/terraform/website/docs/d/data_source_dataproc_metastore_service.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_metastore_service" -sidebar_current: "docs-google-datasource-dataproc-metastore-service" description: |- Get a Dataproc Metastore Service from Google Cloud --- diff --git a/mmv1/third_party/terraform/website/docs/d/data_source_sourcerepo_repository.html.markdown b/mmv1/third_party/terraform/website/docs/d/data_source_sourcerepo_repository.html.markdown index c3fce802c56a..22fbea86d822 100644 --- a/mmv1/third_party/terraform/website/docs/d/data_source_sourcerepo_repository.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/data_source_sourcerepo_repository.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Source Repositories" -layout: "google" page_title: "Google: google_sourcerepo_repository" -sidebar_current: "docs-google-datasource-sourcerepo-repository" description: |- Get information about a Google Cloud Source Repository. --- diff --git a/mmv1/third_party/terraform/website/docs/d/dns_keys.html.markdown b/mmv1/third_party/terraform/website/docs/d/dns_keys.html.markdown index 88388f618127..ec0381641925 100644 --- a/mmv1/third_party/terraform/website/docs/d/dns_keys.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/dns_keys.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud DNS" -layout: "google" page_title: "Google: google_dns_keys" -sidebar_current: "docs-google-datasource-dns-keys" description: |- Get DNSKEY and DS records of DNSSEC-signed managed zones. --- diff --git a/mmv1/third_party/terraform/website/docs/d/dns_managed_zone.html.markdown b/mmv1/third_party/terraform/website/docs/d/dns_managed_zone.html.markdown index 3c55800f2663..8e28098a2901 100644 --- a/mmv1/third_party/terraform/website/docs/d/dns_managed_zone.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/dns_managed_zone.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud DNS" -layout: "google" page_title: "Google: google_dns_managed_zone" -sidebar_current: "docs-google-datasource-dns-managed-zone" description: |- Provides access to the attributes of a zone within Google Cloud DNS --- diff --git a/mmv1/third_party/terraform/website/docs/d/dns_record_set.markdown b/mmv1/third_party/terraform/website/docs/d/dns_record_set.markdown index e64c9c0fc4b5..0c2d16806b64 100644 --- a/mmv1/third_party/terraform/website/docs/d/dns_record_set.markdown +++ b/mmv1/third_party/terraform/website/docs/d/dns_record_set.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud DNS" -layout: "google" page_title: "Google: google_dns_record_set" -sidebar_current: "docs-google-datasource-dns-record-set" description: |- Get a DNS record set within Google Cloud DNS --- diff --git a/mmv1/third_party/terraform/website/docs/d/firebase_web_app.html.markdown b/mmv1/third_party/terraform/website/docs/d/firebase_web_app.html.markdown index 6fa83cbe00c3..2d07e9c65731 100644 --- a/mmv1/third_party/terraform/website/docs/d/firebase_web_app.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/firebase_web_app.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Firebase" -layout: "google" page_title: "Google: google_firebase_web_app" -sidebar_current: "docs-google-firebase-web-app" description: |- A Google Cloud Firebase web application instance --- diff --git a/mmv1/third_party/terraform/website/docs/d/firebase_web_app_config.html.markdown b/mmv1/third_party/terraform/website/docs/d/firebase_web_app_config.html.markdown index 64e34c8f072a..9b5532907161 100644 --- a/mmv1/third_party/terraform/website/docs/d/firebase_web_app_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/firebase_web_app_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Firebase" -layout: "google" page_title: "Google: google_firebase_web_app_config" -sidebar_current: "docs-google-firebase-web-app-config" description: |- A Google Cloud Firebase web application configuration --- diff --git a/mmv1/third_party/terraform/website/docs/d/folder.html.markdown b/mmv1/third_party/terraform/website/docs/d/folder.html.markdown index 51ed1c50f1c8..e1815e8ab9e2 100644 --- a/mmv1/third_party/terraform/website/docs/d/folder.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/folder.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folder" -sidebar_current: "docs-google-datasource-folder" description: |- Get information about a Google Cloud Folder. --- diff --git a/mmv1/third_party/terraform/website/docs/d/folder_organization_policy.html.markdown b/mmv1/third_party/terraform/website/docs/d/folder_organization_policy.html.markdown index c3e88de7132e..d58cb1cf95f0 100644 --- a/mmv1/third_party/terraform/website/docs/d/folder_organization_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/folder_organization_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folder_organization_policy" -sidebar_current: "docs-google-datasource-folder-organization-policy" description: |- Retrieve Organization policies for a Google Folder --- diff --git a/mmv1/third_party/terraform/website/docs/d/folders.html.markdown b/mmv1/third_party/terraform/website/docs/d/folders.html.markdown index a92909156261..4ecde6d15fec 100644 --- a/mmv1/third_party/terraform/website/docs/d/folders.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/folders.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folders" -sidebar_current: "docs-google-datasource-folders" description: |- Retrieve a set of folders based on a parent ID. --- diff --git a/mmv1/third_party/terraform/website/docs/d/game_services_game_server_deployment_rollout.html.markdown b/mmv1/third_party/terraform/website/docs/d/game_services_game_server_deployment_rollout.html.markdown index 6eb11afd799f..a80877e3ad8d 100644 --- a/mmv1/third_party/terraform/website/docs/d/game_services_game_server_deployment_rollout.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/game_services_game_server_deployment_rollout.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Game Servers" -layout: "google" page_title: "Google: google_game_services_game_server_deployment_rollout" -sidebar_current: "docs-google-datasource-game-services-game-server-deployment-rollout" description: |- Get the rollout state. --- diff --git a/mmv1/third_party/terraform/website/docs/d/iam_policy.html.markdown b/mmv1/third_party/terraform/website/docs/d/iam_policy.html.markdown index fd241a1abd0a..2379fcc9eccc 100644 --- a/mmv1/third_party/terraform/website/docs/d/iam_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iam_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_iam_policy" -sidebar_current: "docs-google-datasource-iam-policy" description: |- Generates an IAM policy that can be referenced by other resources, applying the policy to them. diff --git a/mmv1/third_party/terraform/website/docs/d/iam_role.html.markdown b/mmv1/third_party/terraform/website/docs/d/iam_role.html.markdown index c4e178290def..0e97b93f7e2f 100644 --- a/mmv1/third_party/terraform/website/docs/d/iam_role.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iam_role.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_iam_role" -sidebar_current: "docs-google-datasource-iam-role" description: |- Get information about a Google IAM Role. --- diff --git a/mmv1/third_party/terraform/website/docs/d/iam_testable_permissions.html.markdown b/mmv1/third_party/terraform/website/docs/d/iam_testable_permissions.html.markdown index 5b3e650b021f..23bf6223bb31 100644 --- a/mmv1/third_party/terraform/website/docs/d/iam_testable_permissions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iam_testable_permissions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_iam_testable_permissions" -sidebar_current: "docs-google-datasource-iam-testable-permissions" description: |- Retrieve a list of testable permissions for a resource. Testable permissions mean the permissions that user can add or remove in a role at a given resource. The resource can be referenced either via the full resource name or via a URI. --- diff --git a/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool.html.markdown b/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool.html.markdown index b2a9217d800f..8093555f3437 100644 --- a/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud IAM" -layout: "google" page_title: "Google: google_iam_workload_identity_pool" -sidebar_current: "docs-google-datasource-iam-workload-identity-pool" description: |- Get a IAM workload identity pool from Google Cloud --- diff --git a/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool_provider.html.markdown b/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool_provider.html.markdown index 14bc63f7c955..7c85de2fd657 100644 --- a/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool_provider.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iam_workload_identity_pool_provider.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud IAM" -layout: "google" page_title: "Google: google_iam_workload_identity_pool_provider" -sidebar_current: "docs-google-datasource-iam-workload-identity-pool-provider" description: |- Get a IAM workload identity pool provider from Google Cloud --- diff --git a/mmv1/third_party/terraform/website/docs/d/iap_client.html.markdown b/mmv1/third_party/terraform/website/docs/d/iap_client.html.markdown index c66b1d16a4ab..ef68538da52c 100644 --- a/mmv1/third_party/terraform/website/docs/d/iap_client.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/iap_client.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Identity-Aware Proxy" -layout: "google" page_title: "Google: google_iap_client" -sidebar_current: "docs-google-datasource-iap-client" description: |- Contains the data that describes an Identity Aware Proxy owned client. --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_crypto_key.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_crypto_key.html.markdown index 804535044e13..3924ff48d083 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_crypto_key.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_crypto_key.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_crypto_key" -sidebar_current: "docs-google-datasource-kms-crypto-key" description: |- Provides access to KMS key data with Google Cloud KMS. --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_crypto_key_version.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_crypto_key_version.html.markdown index 696733aecaa7..0bea0432bc56 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_crypto_key_version.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_crypto_key_version.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_crypto_key_version" -sidebar_current: "docs-google-datasource-kms-crypto-key-version" description: |- Provides access to KMS key version data with Google Cloud KMS. --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_key_ring.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_key_ring.html.markdown index 50c55a3b3613..0fc6ac3a38ff 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_key_ring.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_key_ring.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_key_ring" -sidebar_current: "docs-google-datasource-kms-key-ring" description: |- Provides access to KMS key ring data with Google Cloud KMS. --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_secret.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_secret.html.markdown index db954a237594..785f05e4f524 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_secret.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_secret.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_secret" -sidebar_current: "docs-google-kms-secret" description: |- Provides access to secret data encrypted with Google Cloud KMS --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_secret_asymmetric.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_secret_asymmetric.html.markdown index 084c5e541771..9942847eedea 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_secret_asymmetric.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_secret_asymmetric.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_secret_asymmetric" -sidebar_current: "docs-google-kms-secret-asymmetric" description: |- Provides access to secret data encrypted with Google Cloud KMS asymmetric key --- diff --git a/mmv1/third_party/terraform/website/docs/d/kms_secret_ciphertext.html.markdown b/mmv1/third_party/terraform/website/docs/d/kms_secret_ciphertext.html.markdown index ec12482e8ffb..de33af98ed7d 100644 --- a/mmv1/third_party/terraform/website/docs/d/kms_secret_ciphertext.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/kms_secret_ciphertext.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_secret_ciphertext" -sidebar_current: "docs-google-kms-secret-ciphertext" description: |- Encrypts secret data with Google Cloud KMS and provides access to the ciphertext --- diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_app_engine_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_app_engine_service.html.markdown index c7ca34229569..72f0825c876d 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_app_engine_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_app_engine_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_app_engine_service" -sidebar_current: "docs-google-datasource-monitoring-app-engine-service" description: |- An Monitoring Service resource created automatically by GCP to monitor an App Engine service. diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_cluster_istio_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_cluster_istio_service.html.markdown index 47dd238b1f2a..031064c71fe5 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_cluster_istio_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_cluster_istio_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_cluster_istio_service" -sidebar_current: "docs-google-datasource-monitoring-cluster-istio-service" description: |- An Monitoring Service resource created automatically by GCP to monitor an Cluster Istio service. diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_istio_canonical_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_istio_canonical_service.html.markdown index 79e6737db5b8..e4946c95934e 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_istio_canonical_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_istio_canonical_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_istio_canonical_service" -sidebar_current: "docs-google-datasource-monitoring-istio-canonical-service" description: |- An Monitoring Service resource created automatically by GCP to monitor an Istio Canonical service. diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_mesh_istio_service.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_mesh_istio_service.html.markdown index b0a24d35f442..4d8fb3e97ab9 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_mesh_istio_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_mesh_istio_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_mesh_istio_service" -sidebar_current: "docs-google-datasource-monitoring-mesh-istio-service" description: |- An Monitoring Service resource created automatically by GCP to monitor an Mesh Istio service. diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_notification_channel.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_notification_channel.html.markdown index 09fcb2f89407..c2a2c0389372 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_notification_channel.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_notification_channel.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_notification_channel" -sidebar_current: "docs-google-datasource-monitoring-notification-channel" description: |- A NotificationChannel is a medium through which an alert is delivered when a policy violation is detected. diff --git a/mmv1/third_party/terraform/website/docs/d/monitoring_uptime_check_ips.html.markdown b/mmv1/third_party/terraform/website/docs/d/monitoring_uptime_check_ips.html.markdown index 821a3e08399e..d4b430002e69 100644 --- a/mmv1/third_party/terraform/website/docs/d/monitoring_uptime_check_ips.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/monitoring_uptime_check_ips.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_uptime_check_ips" -sidebar_current: "docs-google-datasource-google-monitoring-uptime-check-ips" description: |- Returns the list of IP addresses Stackdriver Monitoring uses for uptime checking. --- diff --git a/mmv1/third_party/terraform/website/docs/d/netblock_ip_ranges.html.markdown b/mmv1/third_party/terraform/website/docs/d/netblock_ip_ranges.html.markdown index 85af3b063e00..f1da6aea5e08 100644 --- a/mmv1/third_party/terraform/website/docs/d/netblock_ip_ranges.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/netblock_ip_ranges.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_netblock_ip_ranges" -sidebar_current: "docs-google-datasource-netblock-ip-ranges" description: |- Use this data source to get the IP addresses from different special IP ranges on Google Cloud Platform. --- diff --git a/mmv1/third_party/terraform/website/docs/d/organization.html.markdown b/mmv1/third_party/terraform/website/docs/d/organization.html.markdown index 05189e5d5c04..5db62e6665c5 100644 --- a/mmv1/third_party/terraform/website/docs/d/organization.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/organization.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_organization" -sidebar_current: "docs-google-datasource-organization" description: |- Get information about a Google Cloud Organization. --- diff --git a/mmv1/third_party/terraform/website/docs/d/privateca_certificate_authority.html.markdown b/mmv1/third_party/terraform/website/docs/d/privateca_certificate_authority.html.markdown index 0aa9c2f01411..4f59184873d5 100644 --- a/mmv1/third_party/terraform/website/docs/d/privateca_certificate_authority.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/privateca_certificate_authority.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Certificate Authority Service" -layout: "google" page_title: "Google: google_privateca_certificate_authority" -sidebar_current: "docs-google-datasource-privateca-certificate-authority" description: |- Contains the data that describes a Certificate Authority --- diff --git a/mmv1/third_party/terraform/website/docs/d/project.html.markdown b/mmv1/third_party/terraform/website/docs/d/project.html.markdown index b37b7dafe705..9a9aabcea7a4 100644 --- a/mmv1/third_party/terraform/website/docs/d/project.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/project.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project" -sidebar_current: "docs-google-datasource-project" description: |- Retrieve project details --- diff --git a/mmv1/third_party/terraform/website/docs/d/project_organization_policy.html.markdown b/mmv1/third_party/terraform/website/docs/d/project_organization_policy.html.markdown index ee6e7b01830f..135d9304929d 100644 --- a/mmv1/third_party/terraform/website/docs/d/project_organization_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/project_organization_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_organization_policy" -sidebar_current: "docs-google-datasource-project-organization-policy" description: |- Retrieve Organization policies for a Google Project. --- diff --git a/mmv1/third_party/terraform/website/docs/d/projects.html.markdown b/mmv1/third_party/terraform/website/docs/d/projects.html.markdown index e9d9bc9cbfa7..9f485a4a75a9 100644 --- a/mmv1/third_party/terraform/website/docs/d/projects.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/projects.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_projects" -sidebar_current: "docs-google-datasource-projects" description: |- Retrieve a set of projects based on a filter. --- diff --git a/mmv1/third_party/terraform/website/docs/d/pubsub_topic.html.markdown b/mmv1/third_party/terraform/website/docs/d/pubsub_topic.html.markdown index eeeaa18ebab3..51f6c9fba6aa 100644 --- a/mmv1/third_party/terraform/website/docs/d/pubsub_topic.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/pubsub_topic.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Pub/Sub" -layout: "google" page_title: "Google: google_pubsub_topic" -sidebar_current: "docs-google-datasource-pubsub-topic" description: |- Get information about a Google Cloud Pub/Sub Topic. --- diff --git a/mmv1/third_party/terraform/website/docs/d/redis_instance.html.markdown b/mmv1/third_party/terraform/website/docs/d/redis_instance.html.markdown index 15233f39e921..918da90d957c 100644 --- a/mmv1/third_party/terraform/website/docs/d/redis_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/redis_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Memorystore (Redis)" -layout: "google" page_title: "Google: google_redis_instance" -sidebar_current: "docs-google-datasource-redis-instance" description: |- Get information about a Google Cloud Redis instance. --- diff --git a/mmv1/third_party/terraform/website/docs/d/runtimeconfig_config.html.markdown b/mmv1/third_party/terraform/website/docs/d/runtimeconfig_config.html.markdown index 3d26a25e6c11..302a9fb7bd19 100644 --- a/mmv1/third_party/terraform/website/docs/d/runtimeconfig_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/runtimeconfig_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Runtime Configurator" -layout: "google" page_title: "Google: google_runtimeconfig_config" -sidebar_current: "docs-google-datasource-runtimeconfig-config" description: |- Get information about a Google Cloud RuntimeConfig. --- diff --git a/mmv1/third_party/terraform/website/docs/d/runtimeconfig_variable.html.markdown b/mmv1/third_party/terraform/website/docs/d/runtimeconfig_variable.html.markdown index ea15c5e313fa..24ddab95c1b1 100644 --- a/mmv1/third_party/terraform/website/docs/d/runtimeconfig_variable.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/runtimeconfig_variable.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Runtime Configurator" -layout: "google" page_title: "Google: google_runtimeconfig_variable" -sidebar_current: "docs-google-datasource-runtimeconfig-variable" description: |- Get information about a Google Cloud RuntimeConfig variable. --- diff --git a/mmv1/third_party/terraform/website/docs/d/secret_manager_secret.html.markdown b/mmv1/third_party/terraform/website/docs/d/secret_manager_secret.html.markdown index da78c78c6543..5db6b1ef7d00 100644 --- a/mmv1/third_party/terraform/website/docs/d/secret_manager_secret.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/secret_manager_secret.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Secret Manager" -layout: "google" page_title: "Google: google_secret_manager_secret" -sidebar_current: "docs-google-datasource-secret-manager-secret" description: |- Get information about a Secret Manager Secret --- diff --git a/mmv1/third_party/terraform/website/docs/d/secret_manager_secret_version.html.markdown b/mmv1/third_party/terraform/website/docs/d/secret_manager_secret_version.html.markdown index a316e77739f4..f6bb161ac42f 100644 --- a/mmv1/third_party/terraform/website/docs/d/secret_manager_secret_version.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/secret_manager_secret_version.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Secret Manager" -layout: "google" page_title: "Google: google_secret_manager_secret_version" -sidebar_current: "docs-google-datasource-secret-manager-secret-version" description: |- Get a Secret Manager secret's version. --- diff --git a/mmv1/third_party/terraform/website/docs/d/service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/service_account.html.markdown index af0ff336d896..7b4829eb0044 100644 --- a/mmv1/third_party/terraform/website/docs/d/service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account" -sidebar_current: "docs-google-datasource-service-account" description: |- Get the service account from a project. --- diff --git a/mmv1/third_party/terraform/website/docs/d/service_account_access_token.html.markdown b/mmv1/third_party/terraform/website/docs/d/service_account_access_token.html.markdown index 4c067e396e87..fa55664590e3 100644 --- a/mmv1/third_party/terraform/website/docs/d/service_account_access_token.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/service_account_access_token.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account_access_token" -sidebar_current: "docs-google-service-account-access-token" description: |- Produces access_token for impersonated service accounts --- diff --git a/mmv1/third_party/terraform/website/docs/d/service_account_id_token.html.markdown b/mmv1/third_party/terraform/website/docs/d/service_account_id_token.html.markdown index c8a3c7b861be..4c956d9616e2 100644 --- a/mmv1/third_party/terraform/website/docs/d/service_account_id_token.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/service_account_id_token.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account_id_token" -sidebar_current: "docs-google-service-account-id-token" description: |- Produces OpenID Connect token for service accounts --- diff --git a/mmv1/third_party/terraform/website/docs/d/service_account_key.html.markdown b/mmv1/third_party/terraform/website/docs/d/service_account_key.html.markdown index fdacf3e1674a..f3696755f68d 100644 --- a/mmv1/third_party/terraform/website/docs/d/service_account_key.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/service_account_key.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account_key" -sidebar_current: "docs-google-datasource-service-account-key" description: |- Get a Google Cloud Platform service account Public Key --- diff --git a/mmv1/third_party/terraform/website/docs/d/signed_url.html.markdown b/mmv1/third_party/terraform/website/docs/d/signed_url.html.markdown index 6946cd25b1ad..e48a44c65354 100644 --- a/mmv1/third_party/terraform/website/docs/d/signed_url.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/signed_url.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_object_signed_url" -sidebar_current: "docs-google-datasource-signed_url" description: |- Provides signed URL to Google Cloud Storage object. --- diff --git a/mmv1/third_party/terraform/website/docs/d/spanner_instance.html.markdown b/mmv1/third_party/terraform/website/docs/d/spanner_instance.html.markdown index 84b4c79cb3b2..0f4f27e2a401 100644 --- a/mmv1/third_party/terraform/website/docs/d/spanner_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/spanner_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Spanner" -layout: "google" page_title: "Google: google_spanner_instance" -sidebar_current: "docs-google-datasource-spanner-instance" description: |- Get a spanner instance from Google Cloud --- diff --git a/mmv1/third_party/terraform/website/docs/d/sql_backup_run.html.markdown b/mmv1/third_party/terraform/website/docs/d/sql_backup_run.html.markdown index b35c10ba9411..a3591ac205b6 100644 --- a/mmv1/third_party/terraform/website/docs/d/sql_backup_run.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/sql_backup_run.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_backup_run" -sidebar_current: "docs-google-datasource-sql-backup-run" description: |- Get a SQL backup run in Google Cloud SQL. --- diff --git a/mmv1/third_party/terraform/website/docs/d/sql_ca_certs.html.markdown b/mmv1/third_party/terraform/website/docs/d/sql_ca_certs.html.markdown index 762fdd4a0fbd..80cda171a5cd 100644 --- a/mmv1/third_party/terraform/website/docs/d/sql_ca_certs.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/sql_ca_certs.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_ca_certs" -sidebar_current: "docs-google-datasource-sql-ca-certs" description: |- Get all of the trusted Certificate Authorities (CAs) for the specified SQL database instance. --- diff --git a/mmv1/third_party/terraform/website/docs/d/sql_database_instance.html.markdown b/mmv1/third_party/terraform/website/docs/d/sql_database_instance.html.markdown index 886a22f3c06d..bd30aa0d4600 100644 --- a/mmv1/third_party/terraform/website/docs/d/sql_database_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/sql_database_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_database_instance" -sidebar_current: "docs-google-datasource-sql-database-instance" description: |- Get a SQL database instance in Google Cloud SQL. --- diff --git a/mmv1/third_party/terraform/website/docs/d/storage_bucket.html.markdown b/mmv1/third_party/terraform/website/docs/d/storage_bucket.html.markdown index c00d0be1b499..cb4495da5296 100644 --- a/mmv1/third_party/terraform/website/docs/d/storage_bucket.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/storage_bucket.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket" -sidebar_current: "docs-google-datasource-storage-bucket" description: |- Get information about a Google Cloud Storage bucket. --- diff --git a/mmv1/third_party/terraform/website/docs/d/storage_bucket_object.html.markdown b/mmv1/third_party/terraform/website/docs/d/storage_bucket_object.html.markdown index e4a02c2b1d69..eb9b47725d54 100644 --- a/mmv1/third_party/terraform/website/docs/d/storage_bucket_object.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/storage_bucket_object.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket_object" -sidebar_current: "docs-google-datasource-storage-bucket-object" description: |- Get information about a Google Cloud Storage bucket object. --- diff --git a/mmv1/third_party/terraform/website/docs/d/storage_bucket_object_content.html.markdown b/mmv1/third_party/terraform/website/docs/d/storage_bucket_object_content.html.markdown index 77164c9fabbd..b5c955c591af 100644 --- a/mmv1/third_party/terraform/website/docs/d/storage_bucket_object_content.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/storage_bucket_object_content.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket_object_content" -sidebar_current: "docs-google-datasource-storage-bucket-object_content" description: |- Get content of a Google Cloud Storage bucket object. --- diff --git a/mmv1/third_party/terraform/website/docs/d/storage_project_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/storage_project_service_account.html.markdown index 3c55f2b2dc5b..14f38c70e751 100644 --- a/mmv1/third_party/terraform/website/docs/d/storage_project_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/storage_project_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_project_service_account" -sidebar_current: "docs-google-datasource-storage-project-service-account" description: |- Get the email address of the project's Google Cloud Storage service account --- diff --git a/mmv1/third_party/terraform/website/docs/d/storage_transfer_project_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/d/storage_transfer_project_service_account.html.markdown index 071049b27a2c..f4a198e47b5a 100644 --- a/mmv1/third_party/terraform/website/docs/d/storage_transfer_project_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/storage_transfer_project_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Storage Transfer Service" -layout: "google" page_title: "Google: google_storage_transfer_project_service_account" -sidebar_current: "docs-google-datasource-storage-transfer-project-service-account" description: |- Retrieve default service account used by Storage Transfer Jobs running in this project --- diff --git a/mmv1/third_party/terraform/website/docs/d/tags_tag_key.html.markdown b/mmv1/third_party/terraform/website/docs/d/tags_tag_key.html.markdown index 8c0e1be6dd24..40777dfd50c8 100644 --- a/mmv1/third_party/terraform/website/docs/d/tags_tag_key.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/tags_tag_key.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Tags" -layout: "google" page_title: "Google: google_tags_tag_key" -sidebar_current: "docs-google-datasource-tags-tag-key" description: |- Get a tag key within a GCP organization. --- diff --git a/mmv1/third_party/terraform/website/docs/d/tags_tag_value.html.markdown b/mmv1/third_party/terraform/website/docs/d/tags_tag_value.html.markdown index 4d0f7374b240..696e4990e0f0 100644 --- a/mmv1/third_party/terraform/website/docs/d/tags_tag_value.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/tags_tag_value.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Tags" -layout: "google" page_title: "Google: google_tags_tag_value" -sidebar_current: "docs-google-datasource-tags-tag-value" description: |- Get a tag value from the parent key and short_name. --- diff --git a/mmv1/third_party/terraform/website/docs/d/tpu_tensorflow_versions.html.markdown b/mmv1/third_party/terraform/website/docs/d/tpu_tensorflow_versions.html.markdown index 8ec1d888f7f2..6dd755d7580e 100644 --- a/mmv1/third_party/terraform/website/docs/d/tpu_tensorflow_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/d/tpu_tensorflow_versions.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud TPU" -layout: "google" page_title: "Google: google_tpu_tensorflow_versions" -sidebar_current: "docs-google-datasource-tpu-tensorflow-versions" description: |- Get available TensorFlow versions. --- diff --git a/mmv1/third_party/terraform/website/docs/guides/getting_started.html.markdown b/mmv1/third_party/terraform/website/docs/guides/getting_started.html.markdown index 630e3547b2f8..4eaec2b7602f 100644 --- a/mmv1/third_party/terraform/website/docs/guides/getting_started.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/getting_started.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Getting Started with the Google provider" -sidebar_current: "docs-google-provider-guides-getting-started" description: |- Getting started with the Google Cloud Platform provider --- diff --git a/mmv1/third_party/terraform/website/docs/guides/iam_deleted_members.html.markdown b/mmv1/third_party/terraform/website/docs/guides/iam_deleted_members.html.markdown index 2e172d4a3c66..de8f9dd23979 100644 --- a/mmv1/third_party/terraform/website/docs/guides/iam_deleted_members.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/iam_deleted_members.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Handling diffs with deleted IAM principals" -sidebar_current: "docs-google-provider-guides-iam-deleted" description: |- Handling diffs with deleted IAM principals --- diff --git a/mmv1/third_party/terraform/website/docs/guides/provider_reference.html.markdown b/mmv1/third_party/terraform/website/docs/guides/provider_reference.html.markdown index 88eaa85965f8..4ecc01a0235e 100644 --- a/mmv1/third_party/terraform/website/docs/guides/provider_reference.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/provider_reference.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Google Provider Configuration Reference" -sidebar_current: "docs-google-provider-reference" description: |- Configuration reference for the Google provider for Terraform. --- diff --git a/mmv1/third_party/terraform/website/docs/guides/provider_versions.html.markdown b/mmv1/third_party/terraform/website/docs/guides/provider_versions.html.markdown index edcf39f7ca42..dbd44db95205 100644 --- a/mmv1/third_party/terraform/website/docs/guides/provider_versions.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/provider_versions.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Google Provider Versions" -sidebar_current: "docs-google-provider-versions" description: |- How to use the different Google Provider versions --- diff --git a/mmv1/third_party/terraform/website/docs/guides/using_gke_with_terraform.html.markdown b/mmv1/third_party/terraform/website/docs/guides/using_gke_with_terraform.html.markdown index f6c9fdbfca56..aef8900d0572 100644 --- a/mmv1/third_party/terraform/website/docs/guides/using_gke_with_terraform.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/using_gke_with_terraform.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Using GKE with Terraform" -sidebar_current: "docs-google-provider-guides-using-gke" description: |- Recommendations and best practices for using GKE with Terraform. --- diff --git a/mmv1/third_party/terraform/website/docs/guides/version_2_upgrade.html.markdown b/mmv1/third_party/terraform/website/docs/guides/version_2_upgrade.html.markdown index 4302c4d955b4..b8ffcf65fb90 100644 --- a/mmv1/third_party/terraform/website/docs/guides/version_2_upgrade.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/version_2_upgrade.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Terraform Google Provider 2.0.0 Upgrade Guide" -sidebar_current: "docs-google-provider-guides-version-2-upgrade" description: |- Terraform Google Provider 2.0.0 Upgrade Guide --- diff --git a/mmv1/third_party/terraform/website/docs/guides/version_3_upgrade.html.markdown b/mmv1/third_party/terraform/website/docs/guides/version_3_upgrade.html.markdown index f9e5a58a8eb0..06e5e64b36b4 100644 --- a/mmv1/third_party/terraform/website/docs/guides/version_3_upgrade.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/version_3_upgrade.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Terraform Google Provider 3.0.0 Upgrade Guide" -sidebar_current: "docs-google-provider-guides-version-3-upgrade" description: |- Terraform Google Provider 3.0.0 Upgrade Guide --- diff --git a/mmv1/third_party/terraform/website/docs/guides/version_4_upgrade.html.markdown b/mmv1/third_party/terraform/website/docs/guides/version_4_upgrade.html.markdown index 23b197d5d088..bad7cca87838 100644 --- a/mmv1/third_party/terraform/website/docs/guides/version_4_upgrade.html.markdown +++ b/mmv1/third_party/terraform/website/docs/guides/version_4_upgrade.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Terraform Google Provider 4.0.0 Upgrade Guide" -sidebar_current: "docs-google-provider-guides-version-4-upgrade" description: |- Terraform Google Provider 4.0.0 Upgrade Guide --- diff --git a/mmv1/third_party/terraform/website/docs/index.html.markdown b/mmv1/third_party/terraform/website/docs/index.html.markdown index 3eb121797463..27f1b3b76a77 100644 --- a/mmv1/third_party/terraform/website/docs/index.html.markdown +++ b/mmv1/third_party/terraform/website/docs/index.html.markdown @@ -1,7 +1,5 @@ --- -layout: "google" page_title: "Provider: Google Cloud Platform" -sidebar_current: "docs-google-provider-x" description: |- The Google provider is used to configure your Google Cloud Platform infrastructure --- diff --git a/mmv1/third_party/terraform/website/docs/r/app_engine_application.html.markdown b/mmv1/third_party/terraform/website/docs/r/app_engine_application.html.markdown index 5496f925ac1b..4dff0bb53604 100644 --- a/mmv1/third_party/terraform/website/docs/r/app_engine_application.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/app_engine_application.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "App Engine" -layout: "google" page_title: "Google: google_app_engine_application" -sidebar_current: "docs-google-app-engine-application" description: |- Allows management of an App Engine application. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigquery_dataset_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigquery_dataset_iam.html.markdown index c77f8512ad9f..9403d401c547 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigquery_dataset_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigquery_dataset_iam.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "BigQuery" page_title: "Google: google_bigquery_dataset_iam" -sidebar_current: "docs-google-bigquery-dataset-iam" description: |- Collection of resources to manage IAM policy for a BigQuery dataset. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigquery_table.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigquery_table.html.markdown index 6c7282acc0be..63fa71636540 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigquery_table.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigquery_table.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "BigQuery" -layout: "google" page_title: "Google: google_bigquery_table" -sidebar_current: "docs-google-bigquery-table" description: |- Creates a table resource in a dataset for Google BigQuery. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigtable_gc_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigtable_gc_policy.html.markdown index eeb4ce41341c..3e0d52b5ff3a 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigtable_gc_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigtable_gc_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Bigtable" -layout: "google" page_title: "Google: google_bigtable_gc_policy" -sidebar_current: "docs-google-bigtable-gc-policy" description: |- Creates a Google Cloud Bigtable GC Policy inside a family. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigtable_instance.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigtable_instance.html.markdown index 725d6c47bfda..ef4972b55888 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigtable_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigtable_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Bigtable" -layout: "google" page_title: "Google: google_bigtable_instance" -sidebar_current: "docs-google-bigtable-instance" description: |- Creates a Google Bigtable instance. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigtable_instance_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigtable_instance_iam.html.markdown index b96fe9ddd88f..954e8106ad14 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigtable_instance_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigtable_instance_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Bigtable" -layout: "google" page_title: "Google: google_bigtable_instance_iam" -sidebar_current: "docs-google-bigtable-instance-iam" description: |- Collection of resources to manage IAM policy for a Bigtable instance. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigtable_table.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigtable_table.html.markdown index 37d27bdf3b42..c7ebcc6904ed 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigtable_table.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigtable_table.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Bigtable" -layout: "google" page_title: "Google: google_bigtable_table" -sidebar_current: "docs-google-bigtable-table" description: |- Creates a Google Cloud Bigtable table inside an instance. --- diff --git a/mmv1/third_party/terraform/website/docs/r/bigtable_table_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/bigtable_table_iam.html.markdown index 461865abd617..77791bda9c33 100644 --- a/mmv1/third_party/terraform/website/docs/r/bigtable_table_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/bigtable_table_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Bigtable" -layout: "google" page_title: "Google: google_bigtable_table_iam" -sidebar_current: "docs-google-bigtable-table-iam" description: |- Collection of resources to manage IAM policy for a Bigtable Table. --- diff --git a/mmv1/third_party/terraform/website/docs/r/billing_account_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/billing_account_iam.html.markdown index 0f0128aac0a4..c03a764d6d8e 100644 --- a/mmv1/third_party/terraform/website/docs/r/billing_account_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/billing_account_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Billing" -layout: "google" page_title: "Google: google_billing_account_iam" -sidebar_current: "docs-google-billing-account-iam" description: |- Collection of resources to manage IAM policy for a Billing Account. --- diff --git a/mmv1/third_party/terraform/website/docs/r/cloudbuild_worker_pool.html.markdown b/mmv1/third_party/terraform/website/docs/r/cloudbuild_worker_pool.html.markdown index 0b32d1846630..bf833e1b863b 100644 --- a/mmv1/third_party/terraform/website/docs/r/cloudbuild_worker_pool.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/cloudbuild_worker_pool.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Build" -layout: "google" page_title: "Google: google_cloudbuild_worker_pool" -sidebar_current: "docs-google-cloudbuild-worker-pool" description: |- Configuration for custom WorkerPool to run builds --- diff --git a/mmv1/third_party/terraform/website/docs/r/cloudfunctions_function.html.markdown b/mmv1/third_party/terraform/website/docs/r/cloudfunctions_function.html.markdown index c5727d69b454..5a55b487c0ae 100644 --- a/mmv1/third_party/terraform/website/docs/r/cloudfunctions_function.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/cloudfunctions_function.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Functions" -layout: "google" page_title: "Google: google_cloudfunctions_function" -sidebar_current: "docs-google-cloudfunctions-function" description: |- Creates a new Cloud Function. --- diff --git a/mmv1/third_party/terraform/website/docs/r/composer_environment.html.markdown b/mmv1/third_party/terraform/website/docs/r/composer_environment.html.markdown index 8ee4e4bec87d..8719e5c050ff 100644 --- a/mmv1/third_party/terraform/website/docs/r/composer_environment.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/composer_environment.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Composer" -layout: "google" page_title: "Google: google_composer_environment" -sidebar_current: "docs-google-composer-environment" description: |- An environment for running orchestration tasks. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_attached_disk.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_attached_disk.html.markdown index b3e06861c5e8..5937cf003444 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_attached_disk.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_attached_disk.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_attached_disk" -sidebar_current: "docs-google-compute-attached-disk" description: |- Resource that allows attaching existing persistent disks to compute instances. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy.html.markdown index ecf39e8392ec..40174e61743f 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy.html.markdown @@ -14,9 +14,7 @@ # # ---------------------------------------------------------------------------- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_firewall_policy" -sidebar_current: "docs-google-compute-firewall-policy" description: |- Creates a hierarchical firewall policy --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_association.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_association.html.markdown index 4d1fbf7d2144..6270c49ded23 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_association.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_association.html.markdown @@ -14,9 +14,7 @@ # # ---------------------------------------------------------------------------- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_firewall_policy_association" -sidebar_current: "docs-google-compute-firewall-policy-association" description: |- Applies a hierarchical firewall policy to a target resource --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_rule.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_rule.html.markdown index 5335cd87882b..bb79cf8fa195 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_rule.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_firewall_policy_rule.html.markdown @@ -14,9 +14,7 @@ # # ---------------------------------------------------------------------------- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_firewall_policy_rule" -sidebar_current: "docs-google-compute-firewall-policy-rule" description: |- Specific rules to add to a hierarchical firewall policy --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance.html.markdown index a3c4b9f5e324..bdd4cc562b63 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance" -sidebar_current: "docs-google-compute-instance-x" description: |- Manages a VM instance resource within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance_from_machine_image.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance_from_machine_image.html.markdown index 3a74b0ba79a8..d5d87157fd8d 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance_from_machine_image.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance_from_machine_image.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_from_machine_image" -sidebar_current: "docs-google-compute-instance-from-machine-image" description: |- Manages a VM instance resource within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance_from_template.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance_from_template.html.markdown index 6e74ed1dcfa1..0aced78010f1 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance_from_template.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance_from_template.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_from_template" -sidebar_current: "docs-google-compute-instance-from-template" description: |- Manages a VM instance resource within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance_group.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance_group.html.markdown index f998684f9a6c..e32f355a5c6b 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance_group.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance_group.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_group" -sidebar_current: "docs-google-compute-instance-group-x" description: |- Manages an Instance Group within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance_group_manager.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance_group_manager.html.markdown index de5d32063bb9..ebff27435f96 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance_group_manager.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance_group_manager.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_group_manager" -sidebar_current: "docs-google-compute-instance-group-manager" description: |- Manages an Instance Group within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_instance_template.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_instance_template.html.markdown index 947a53ced6d7..27ef8ad9af6d 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_instance_template.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_instance_template.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_instance_template" -sidebar_current: "docs-google-compute-instance-template" description: |- Manages a VM instance template resource within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_network_peering.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_network_peering.html.markdown index c341f41fcc13..77831c053c64 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_network_peering.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_network_peering.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_network_peering" -sidebar_current: "docs-google-compute-network-peering" description: |- Manages a network peering within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_project_default_network_tier.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_project_default_network_tier.html.markdown index 8cd53fca302e..d0545519967b 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_project_default_network_tier.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_project_default_network_tier.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_project_default_network_tier" -sidebar_current: "docs-google-compute-project-default-network-tier" description: |- Configures the default network tier for a project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_project_metadata.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_project_metadata.html.markdown index f1fa2fa2d51b..ecef905b09d1 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_project_metadata.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_project_metadata.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_project_metadata" -sidebar_current: "docs-google-compute-project-metadata" description: |- Manages common instance metadata --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_project_metadata_item.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_project_metadata_item.html.markdown index 37135fdd2d60..9cc900c0b796 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_project_metadata_item.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_project_metadata_item.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_project_metadata_item" -sidebar_current: "docs-google-compute-project-metadata-item" description: |- Manages a single key/value pair on common instance metadata --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_region_instance_group_manager.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_region_instance_group_manager.html.markdown index f4fdfc72c0d1..c801e7fbff35 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_region_instance_group_manager.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_region_instance_group_manager.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_region_instance_group_manager" -sidebar_current: "docs-google-compute-region_instance-group-manager" description: |- Manages an Regional Instance Group within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_router_interface.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_router_interface.html.markdown index d9925792e7ae..f7a1fd0f560f 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_router_interface.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_router_interface.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_router_interface" -sidebar_current: "docs-google-compute-router-interface" description: |- Manages a Cloud Router interface. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_security_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_security_policy.html.markdown index ec0eaa78f755..1c4fda133e54 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_security_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_security_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_security_policy" -sidebar_current: "docs-google-compute-security-policy" description: |- Creates a Security Policy resource for Google Compute Engine. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_host_project.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_host_project.html.markdown index 6b4441a0604e..db9fd1c51b46 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_host_project.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_host_project.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_shared_vpc_host_project" -sidebar_current: "docs-google-compute-shared-vpc-host-project" description: |- Enables the Google Compute Engine Shared VPC feature for a project, assigning it as a host project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_service_project.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_service_project.html.markdown index 1ebfb3891900..999fa57c2c63 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_service_project.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_shared_vpc_service_project.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_shared_vpc_service_project" -sidebar_current: "docs-google-compute-shared-vpc-service-project" description: |- Enables the Google Compute Engine Shared VPC feature for a project, assigning it as a service project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/compute_target_pool.html.markdown b/mmv1/third_party/terraform/website/docs/r/compute_target_pool.html.markdown index d5bb492169ae..4d771e383d9f 100644 --- a/mmv1/third_party/terraform/website/docs/r/compute_target_pool.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/compute_target_pool.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_compute_target_pool" -sidebar_current: "docs-google-compute-target-pool" description: |- Manages a Target Pool within GCE. --- diff --git a/mmv1/third_party/terraform/website/docs/r/container_cluster.html.markdown b/mmv1/third_party/terraform/website/docs/r/container_cluster.html.markdown index 57c2e7a44cd0..348a2b693b2b 100644 --- a/mmv1/third_party/terraform/website/docs/r/container_cluster.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/container_cluster.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Kubernetes (Container) Engine" -layout: "google" page_title: "Google: google_container_cluster" -sidebar_current: "docs-google-container-cluster" description: |- Creates a Google Kubernetes Engine (GKE) cluster. --- diff --git a/mmv1/third_party/terraform/website/docs/r/container_node_pool.html.markdown b/mmv1/third_party/terraform/website/docs/r/container_node_pool.html.markdown index 6ce7d4ed6497..e9f48766a493 100644 --- a/mmv1/third_party/terraform/website/docs/r/container_node_pool.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/container_node_pool.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Kubernetes (Container) Engine" -layout: "google" page_title: "Google: google_container_node_pool" -sidebar_current: "docs-google-container-node-pool" description: |- Manages a GKE NodePool resource. --- diff --git a/mmv1/third_party/terraform/website/docs/r/container_registry.html.markdown b/mmv1/third_party/terraform/website/docs/r/container_registry.html.markdown index 9be966b9c07d..a989197c84fe 100644 --- a/mmv1/third_party/terraform/website/docs/r/container_registry.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/container_registry.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Container Registry" -layout: "google" page_title: "Google: google_container_registry" -sidebar_current: "docs-google-container-registry" description: |- Ensures the GCS bucket backing Google Container Registry exists. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataflow_flex_template_job.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataflow_flex_template_job.html.markdown index 5c3457dfa2a7..49c1db9ea76a 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataflow_flex_template_job.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataflow_flex_template_job.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataflow" -layout: "google" page_title: "Google: google_dataflow_flex_template_job" -sidebar_current: "docs-google-dataflow-flex-template-job" description: |- Creates a job in Dataflow based on a Flex Template. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataflow_job.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataflow_job.html.markdown index f5ec9f27427b..9f41bc90beab 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataflow_job.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataflow_job.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataflow" -layout: "google" page_title: "Google: google_dataflow_job" -sidebar_current: "docs-google-dataflow-job" description: |- Creates a job in Dataflow according to a provided config file. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataproc_cluster.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataproc_cluster.html.markdown index c085bd0d684a..c8ea6d06065c 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataproc_cluster.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataproc_cluster.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_cluster" -sidebar_current: "docs-google-dataproc-cluster" description: |- Manages a Cloud Dataproc cluster resource. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataproc_cluster_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataproc_cluster_iam.html.markdown index afbc46154ac1..c707c012705e 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataproc_cluster_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataproc_cluster_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_cluster_iam" -sidebar_current: "docs-google-dataproc-cluster-iam" description: |- Collection of resources to manage IAM policy for a Dataproc cluster. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataproc_job.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataproc_job.html.markdown index fb2e436aadf3..8fba0eb5dad0 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataproc_job.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataproc_job.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_job" -sidebar_current: "docs-google-dataproc-job" description: |- Manages a job resource within a Dataproc cluster. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataproc_job_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataproc_job_iam.html.markdown index a08da44861b3..9e7d89b7f57d 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataproc_job_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataproc_job_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_job_iam" -sidebar_current: "docs-google-dataproc-job-iam" description: |- Collection of resources to manage IAM policy for a Dataproc job. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dataproc_workflow_template.html.markdown b/mmv1/third_party/terraform/website/docs/r/dataproc_workflow_template.html.markdown index 614f432f61a4..97217b531fd8 100644 --- a/mmv1/third_party/terraform/website/docs/r/dataproc_workflow_template.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dataproc_workflow_template.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Dataproc" -layout: "google" page_title: "Google: google_dataproc_workflow_template" -sidebar_current: "docs-google-dataproc-workflow-template" description: |- A Workflow Template is a reusable workflow configuration. --- diff --git a/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown b/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown index f89f79192e17..9c0b2fb56d1a 100644 --- a/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud DNS" -layout: "google" page_title: "Google: google_dns_record_set" -sidebar_current: "docs-google-dns-record-set" description: |- Manages a set of DNS records within Google Cloud DNS. --- diff --git a/mmv1/third_party/terraform/website/docs/r/endpoints_service.html.markdown b/mmv1/third_party/terraform/website/docs/r/endpoints_service.html.markdown index a2676a77f481..03858f637bf7 100644 --- a/mmv1/third_party/terraform/website/docs/r/endpoints_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/endpoints_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Endpoints" -layout: "google" page_title: "Google: google_endpoints_service" -sidebar_current: "docs-google-endpoints-service" description: |- Creates and rolls out a Google Endpoints service. --- diff --git a/mmv1/third_party/terraform/website/docs/r/gke_hub_feature.html.markdown b/mmv1/third_party/terraform/website/docs/r/gke_hub_feature.html.markdown index 56b75b61c8e6..18e4894733a9 100644 --- a/mmv1/third_party/terraform/website/docs/r/gke_hub_feature.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/gke_hub_feature.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "GKEHub" -layout: "google" page_title: "Google: google_gke_hub_feature" -sidebar_current: "docs-google-gkehub-feature" description: |- Contains information about a GKEHub Feature. --- diff --git a/mmv1/third_party/terraform/website/docs/r/gke_hub_feature_membership.html.markdown b/mmv1/third_party/terraform/website/docs/r/gke_hub_feature_membership.html.markdown index 9e1e815142ab..25d7fbf64ae7 100644 --- a/mmv1/third_party/terraform/website/docs/r/gke_hub_feature_membership.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/gke_hub_feature_membership.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "GKEHub" -layout: "google" page_title: "Google: google_gke_hub_feature_membership" -sidebar_current: "docs-google-gkehub-feature-membership" description: |- Contains information about a GKEHub Feature Memberships. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_billing_subaccount.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_billing_subaccount.html.markdown index 960b76582dde..73007be928dd 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_billing_subaccount.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_billing_subaccount.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_billing_subaccount" -sidebar_current: "docs-google-billing-subaccount" description: |- Allows management of a Google Cloud Billing Subaccount. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_folder.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_folder.html.markdown index bde78e4d0426..342d9a8cf053 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_folder.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_folder.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folder" -sidebar_current: "docs-google-folder-x" description: |- Allows management of a Google Cloud Platform folder. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_folder_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_folder_iam.html.markdown index 784aac174740..f85865bd01bb 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_folder_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_folder_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folder_iam" -sidebar_current: "docs-google-folder-iam" description: |- Collection of resources to manage IAM policy for a folder. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_folder_organization_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_folder_organization_policy.html.markdown index e65771b57ce3..8daaf8a92699 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_folder_organization_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_folder_organization_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_folder_organization_policy" -sidebar_current: "docs-google-folder-organization-policy" description: |- Allows management of Organization policies for a Google Folder. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_kms_crypto_key_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_kms_crypto_key_iam.html.markdown index 7c366b35aa0c..bc25ced88316 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_kms_crypto_key_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_kms_crypto_key_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_crypto_key_iam" -sidebar_current: "docs-google-kms-crypto-key-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud KMS crypto key. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_kms_key_ring_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_kms_key_ring_iam.html.markdown index e04a40438687..e4b74b5a5755 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_kms_key_ring_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_kms_key_ring_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Key Management Service" -layout: "google" page_title: "Google: google_kms_key_ring_iam" -sidebar_current: "docs-google-kms-key-ring-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud KMS key ring. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_organization_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_organization_iam.html.markdown index 7d096b938a9d..fbfeb7fe71b5 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_organization_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_organization_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_organization_iam" -sidebar_current: "docs-google-organization-iam" description: |- Collection of resources to manage IAM policy for a organization. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_organization_iam_custom_role.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_organization_iam_custom_role.html.markdown index 59b0591ca325..a287e6263271 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_organization_iam_custom_role.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_organization_iam_custom_role.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_organization_iam_custom_role" -sidebar_current: "docs-google-organization-iam-custom-role" description: |- Allows management of a customized Cloud IAM organization role. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_organization_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_organization_policy.html.markdown index f7e8df24aea6..652a1888c6fb 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_organization_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_organization_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_organization_policy" -sidebar_current: "docs-google-organization-policy" description: |- Allows management of Organization policies for a Google Organization. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project.html.markdown index 95c7664033c4..6f393d38b879 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project" -sidebar_current: "docs-google-project-x" description: |- Allows management of a Google Cloud Platform project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_default_service_accounts.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_default_service_accounts.html.markdown index 40474453d832..61c11068c9b5 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_default_service_accounts.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_default_service_accounts.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_default_service_accounts" -sidebar_current: "docs-google-project-default-service-accounts-x" description: |- Allows management of Google Cloud Platform project default service accounts. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_iam.html.markdown index 13bc0dd1c31f..3fa08d4c3742 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_iam" -sidebar_current: "docs-google-project-iam-x" description: |- Collection of resources to manage IAM policy for a project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_iam_custom_role.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_iam_custom_role.html.markdown index 13d66ab10443..d1020b991481 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_iam_custom_role.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_iam_custom_role.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_iam_custom_role" -sidebar_current: "docs-google-project-iam-custom-role" description: |- Allows management of a customized Cloud IAM project role. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_organization_policy.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_organization_policy.html.markdown index 417d78fac2e0..f02694725e17 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_organization_policy.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_organization_policy.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_organization_policy" -sidebar_current: "docs-google-project-organization-policy" description: |- Allows management of Organization policies for a Google Project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown index 4a24aeb73308..2c7decae392f 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_service" -sidebar_current: "docs-google-project-service-x" description: |- Allows management of a single API service for a Google Cloud Platform project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_service_account.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_service_account.html.markdown index 394a0cba4002..eff0a9c9b6bb 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_service_account.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_service_account.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account" -sidebar_current: "docs-google-service-account-x" description: |- Allows management of a Google Cloud Platform service account. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown index 60515bdba552..cd4c5270e843 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_service_account_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account_iam" -sidebar_current: "docs-google-service-account-iam" description: |- Collection of resources to manage IAM policy for a service account. --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_service_account_key.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_service_account_key.html.markdown index 075d6ccbe417..428a2f35393f 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_service_account_key.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_service_account_key.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_account_key" -sidebar_current: "docs-google-service-account-key" description: |- Allows management of a Google Cloud Platform service account Key --- diff --git a/mmv1/third_party/terraform/website/docs/r/google_service_networking_peered_dns_domain.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_service_networking_peered_dns_domain.html.markdown index 98554e5c43b7..320ff3d5c770 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_service_networking_peered_dns_domain.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_service_networking_peered_dns_domain.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_service_networking_peered_dns_domain" -sidebar_current: "docs-google-project-service-peered-dns-domain-x" description: |- Allows management of a single peered DNS domain on a project. --- diff --git a/mmv1/third_party/terraform/website/docs/r/healthcare_dataset_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/healthcare_dataset_iam.html.markdown index 4c25184171c9..9e69945be68d 100644 --- a/mmv1/third_party/terraform/website/docs/r/healthcare_dataset_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/healthcare_dataset_iam.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Cloud Healthcare" page_title: "Google: google_healthcare_dataset_iam" -sidebar_current: "docs-google-healthcare-dataset-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud Healthcare dataset. --- diff --git a/mmv1/third_party/terraform/website/docs/r/healthcare_dicom_store_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/healthcare_dicom_store_iam.html.markdown index e871816c6cb9..1fa3a3739531 100644 --- a/mmv1/third_party/terraform/website/docs/r/healthcare_dicom_store_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/healthcare_dicom_store_iam.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Cloud Healthcare" page_title: "Google: google_healthcare_dicom_store_iam" -sidebar_current: "docs-google-healthcare-dicom-store-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud Healthcare DICOM store. --- diff --git a/mmv1/third_party/terraform/website/docs/r/healthcare_fhir_store_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/healthcare_fhir_store_iam.html.markdown index 58084b82ae0b..74484a6dafb8 100644 --- a/mmv1/third_party/terraform/website/docs/r/healthcare_fhir_store_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/healthcare_fhir_store_iam.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Cloud Healthcare" page_title: "Google: google_healthcare_fhir_store_iam" -sidebar_current: "docs-google-healthcare-fhir-store-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud Healthcare FHIR store. --- diff --git a/mmv1/third_party/terraform/website/docs/r/healthcare_hl7_v2_store_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/healthcare_hl7_v2_store_iam.html.markdown index db8392014910..b69102b39d77 100644 --- a/mmv1/third_party/terraform/website/docs/r/healthcare_hl7_v2_store_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/healthcare_hl7_v2_store_iam.html.markdown @@ -1,8 +1,6 @@ --- -layout: "google" subcategory: "Cloud Healthcare" page_title: "Google: google_healthcare_hl7_v2_store_iam" -sidebar_current: "docs-google-healthcare-hl7-v2-store-iam" description: |- Collection of resources to manage IAM policy for a Google Cloud Healthcare HL7v2 store. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_bucket_config.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_bucket_config.html.markdown index e113bdbee57b..9f31bcda5c7e 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_bucket_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_bucket_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_billing_account_bucket_config" -sidebar_current: "docs-google-logging-billing-account-bucket-config" description: |- Manages a billing account level logging bucket config. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_exclusion.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_exclusion.html.markdown index f9698ed60a3e..8bfe6208030b 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_exclusion.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_exclusion.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_billing_account_exclusion" -sidebar_current: "docs-google-logging-billing_account-exclusion" description: |- Manages a billing_account-level logging exclusion. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_sink.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_sink.html.markdown index 60789245d488..afacbe331938 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_billing_account_sink.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_billing_account_sink.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_billing_account_sink" -sidebar_current: "docs-google-logging-billing-account-sink" description: |- Manages a billing account logging sink. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_folder_bucket_config.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_folder_bucket_config.html.markdown index f411d617b0b9..f0f28cf363cd 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_folder_bucket_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_folder_bucket_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_folder_bucket_config" -sidebar_current: "docs-google-logging-folder-bucket-config" description: |- Manages a folder-level logging bucket config. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_folder_exclusion.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_folder_exclusion.html.markdown index 2a3b04faebde..dbbe1b9670c9 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_folder_exclusion.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_folder_exclusion.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_folder_exclusion" -sidebar_current: "docs-google-logging-folder-exclusion" description: |- Manages a folder-level logging exclusion. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_folder_sink.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_folder_sink.html.markdown index 94c41f213f98..54410e887079 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_folder_sink.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_folder_sink.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_folder_sink" -sidebar_current: "docs-google-logging-folder-sink" description: |- Manages a folder-level logging sink. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_organization_bucket_config.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_organization_bucket_config.html.markdown index b43f227fbe33..ac48fa53cd81 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_organization_bucket_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_organization_bucket_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_organization_bucket_config" -sidebar_current: "docs-google-logging-organization-bucket-config" description: |- Manages a organization-level logging bucket config. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_organization_exclusion.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_organization_exclusion.html.markdown index 19ae5c67f399..c861bbbfe1f5 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_organization_exclusion.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_organization_exclusion.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_organization_exclusion" -sidebar_current: "docs-google-logging-organization-exclusion" description: |- Manages a organization-level logging exclusion. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_organization_sink.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_organization_sink.html.markdown index eaf0b29eb344..6e3507ee5f42 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_organization_sink.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_organization_sink.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_organization_sink" -sidebar_current: "docs-google-logging-organization-sink" description: |- Manages a organization-level logging sink. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_project_bucket_config.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_project_bucket_config.html.markdown index d1ca2350b87d..e14d8b92d955 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_project_bucket_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_project_bucket_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_project_bucket_config" -sidebar_current: "docs-google-logging-project-bucket-config" description: |- Manages a project-level logging bucket config. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_project_exclusion.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_project_exclusion.html.markdown index 8af778b373e9..47341f536f6d 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_project_exclusion.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_project_exclusion.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_project_exclusion" -sidebar_current: "docs-google-logging-project-exclusion" description: |- Manages a project-level logging exclusion. --- diff --git a/mmv1/third_party/terraform/website/docs/r/logging_project_sink.html.markdown b/mmv1/third_party/terraform/website/docs/r/logging_project_sink.html.markdown index 9544b4e07cf0..b4c88a32e792 100644 --- a/mmv1/third_party/terraform/website/docs/r/logging_project_sink.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/logging_project_sink.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Logging" -layout: "google" page_title: "Google: google_logging_project_sink" -sidebar_current: "docs-google-logging-project-sink" description: |- Manages a project-level logging sink. --- diff --git a/mmv1/third_party/terraform/website/docs/r/monitoring_dashboard.html.markdown b/mmv1/third_party/terraform/website/docs/r/monitoring_dashboard.html.markdown index 407b4971bf22..b74d730ce211 100644 --- a/mmv1/third_party/terraform/website/docs/r/monitoring_dashboard.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/monitoring_dashboard.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud (Stackdriver) Monitoring" -layout: "google" page_title: "Google: google_monitoring_dashboard" -sidebar_current: "docs-google-monitoring-dashboard" description: |- A Google Stackdriver dashboard. --- diff --git a/mmv1/third_party/terraform/website/docs/r/project_service_identity.html.markdown b/mmv1/third_party/terraform/website/docs/r/project_service_identity.html.markdown index 498ee0392a0c..44b2728b50cd 100644 --- a/mmv1/third_party/terraform/website/docs/r/project_service_identity.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/project_service_identity.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Platform" -layout: "google" page_title: "Google: google_project_service_identity" -sidebar_current: "docs-google-project-service-identity" description: |- Generate service identity for a service. --- diff --git a/mmv1/third_party/terraform/website/docs/r/pubsub_subscription_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/pubsub_subscription_iam.html.markdown index 960d1b8ca9c8..1ec03a9ab90d 100644 --- a/mmv1/third_party/terraform/website/docs/r/pubsub_subscription_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/pubsub_subscription_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Pub/Sub" -layout: "google" page_title: "Google: google_pubsub_subscription_iam" -sidebar_current: "docs-google-pubsub-subscription-iam" description: |- Collection of resources to manage IAM policy for a Pubsub subscription. --- diff --git a/mmv1/third_party/terraform/website/docs/r/runtimeconfig_config.html.markdown b/mmv1/third_party/terraform/website/docs/r/runtimeconfig_config.html.markdown index f5078e1767c0..e17ceae832af 100644 --- a/mmv1/third_party/terraform/website/docs/r/runtimeconfig_config.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/runtimeconfig_config.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Runtime Configurator" -layout: "google" page_title: "Google: google_runtimeconfig_config" -sidebar_current: "docs-google-runtimeconfig-config" description: |- Manages a RuntimeConfig resource in Google Cloud. --- diff --git a/mmv1/third_party/terraform/website/docs/r/runtimeconfig_variable.html.markdown b/mmv1/third_party/terraform/website/docs/r/runtimeconfig_variable.html.markdown index ad1e8c0a3a6c..fe764a496ff7 100644 --- a/mmv1/third_party/terraform/website/docs/r/runtimeconfig_variable.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/runtimeconfig_variable.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Runtime Configurator" -layout: "google" page_title: "Google: google_runtimeconfig_variable" -sidebar_current: "docs-google-runtimeconfig-variable" description: |- Manages a RuntimeConfig variable in Google Cloud. --- diff --git a/mmv1/third_party/terraform/website/docs/r/service_networking_connection.html.markdown b/mmv1/third_party/terraform/website/docs/r/service_networking_connection.html.markdown index f80e8759b9b1..78bf596854d7 100644 --- a/mmv1/third_party/terraform/website/docs/r/service_networking_connection.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/service_networking_connection.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Service Networking" -layout: "google" page_title: "Google: google_service_networking_connection" -sidebar_current: "docs-google-service-networking-connection" description: |- Manages creating a private VPC connection to a service provider. --- diff --git a/mmv1/third_party/terraform/website/docs/r/spanner_database_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/spanner_database_iam.html.markdown index efc97254806a..6bc26470e574 100644 --- a/mmv1/third_party/terraform/website/docs/r/spanner_database_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/spanner_database_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Spanner" -layout: "google" page_title: "Google: google_spanner_database_iam" -sidebar_current: "docs-google-spanner-database-iam" description: |- Collection of resources to manage IAM policy for a Spanner database. --- diff --git a/mmv1/third_party/terraform/website/docs/r/spanner_instance_iam.html.markdown b/mmv1/third_party/terraform/website/docs/r/spanner_instance_iam.html.markdown index b2c953fad797..a664f54dcdec 100644 --- a/mmv1/third_party/terraform/website/docs/r/spanner_instance_iam.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/spanner_instance_iam.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Spanner" -layout: "google" page_title: "Google: google_spanner_instance_iam" -sidebar_current: "docs-google-spanner-instance-iam" description: |- Collection of resources to manage IAM policy for a Spanner instance. --- diff --git a/mmv1/third_party/terraform/website/docs/r/sql_database_instance.html.markdown b/mmv1/third_party/terraform/website/docs/r/sql_database_instance.html.markdown index 2f9bb4b85018..370b5da27ca9 100644 --- a/mmv1/third_party/terraform/website/docs/r/sql_database_instance.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/sql_database_instance.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_database_instance" -sidebar_current: "docs-google-sql-database-instance" description: |- Creates a new SQL database instance in Google Cloud SQL. --- diff --git a/mmv1/third_party/terraform/website/docs/r/sql_ssl_cert.html.markdown b/mmv1/third_party/terraform/website/docs/r/sql_ssl_cert.html.markdown index 7e36a747478e..898cf132ed8d 100644 --- a/mmv1/third_party/terraform/website/docs/r/sql_ssl_cert.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/sql_ssl_cert.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_ssl_cert" -sidebar_current: "docs-google-sql-ssl-cert" description: |- Creates a new SQL Ssl Cert in Google Cloud SQL. --- diff --git a/mmv1/third_party/terraform/website/docs/r/sql_user.html.markdown b/mmv1/third_party/terraform/website/docs/r/sql_user.html.markdown index de98e1f04450..784e837b214f 100644 --- a/mmv1/third_party/terraform/website/docs/r/sql_user.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/sql_user.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud SQL" -layout: "google" page_title: "Google: google_sql_user" -sidebar_current: "docs-google-sql-user" description: |- Creates a new SQL user in Google Cloud SQL. --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_bucket.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_bucket.html.markdown index 26c6297b53e9..d6b9eefc0110 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_bucket.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_bucket.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket" -sidebar_current: "docs-google-storage-bucket-x" description: |- Creates a new bucket in Google Cloud Storage. --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_bucket_acl.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_bucket_acl.html.markdown index bb8a394be472..6331efa54b88 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_bucket_acl.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_bucket_acl.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket_acl" -sidebar_current: "docs-google-storage-bucket-acl" description: |- Creates a new bucket ACL in Google Cloud Storage. --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_bucket_object.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_bucket_object.html.markdown index 60bb36948d16..929cbd485854 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_bucket_object.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_bucket_object.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_bucket_object" -sidebar_current: "docs-google-storage-bucket-object" description: |- Creates a new object inside a specified bucket --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_default_object_acl.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_default_object_acl.html.markdown index 0ad33a6afeb1..bc357e9cd95d 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_default_object_acl.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_default_object_acl.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_default_object_acl" -sidebar_current: "docs-google-storage-default-object-acl" description: |- Authoritatively manages the default object ACLs for a Google Cloud Storage bucket --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_notification.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_notification.html.markdown index 2ebea393bcb7..c3ba7fa63a87 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_notification.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_notification.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_notification" -sidebar_current: "docs-google-storage-notification" description: |- Creates a new notification configuration on a specified bucket. --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_object_acl.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_object_acl.html.markdown index f85296da4660..1029d5f9177c 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_object_acl.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_object_acl.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Cloud Storage" -layout: "google" page_title: "Google: google_storage_object_acl" -sidebar_current: "docs-google-storage-object-acl" description: |- Creates a new object ACL in Google Cloud Storage. --- diff --git a/mmv1/third_party/terraform/website/docs/r/storage_transfer_job.html.markdown b/mmv1/third_party/terraform/website/docs/r/storage_transfer_job.html.markdown index c378b522bd3e..023dcb9a2e69 100644 --- a/mmv1/third_party/terraform/website/docs/r/storage_transfer_job.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/storage_transfer_job.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Storage Transfer Service" -layout: "google" page_title: "Google: google_storage_transfer_job" -sidebar_current: "docs-google-storage-transfer-job-x" description: |- Creates a new Transfer Job in Google Cloud Storage Transfer. --- diff --git a/mmv1/third_party/terraform/website/docs/r/usage_export_bucket.html.markdown b/mmv1/third_party/terraform/website/docs/r/usage_export_bucket.html.markdown index 59f86dde1b6f..127ec052ddb1 100644 --- a/mmv1/third_party/terraform/website/docs/r/usage_export_bucket.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/usage_export_bucket.html.markdown @@ -1,8 +1,6 @@ --- subcategory: "Compute Engine" -layout: "google" page_title: "Google: google_project_usage_export_bucket" -sidebar_current: "docs-google-project-usage-export-bucket" description: |- Manages a project's usage export bucket. --- diff --git a/mmv1/third_party/terraform/website/google.erb.tmpl b/mmv1/third_party/terraform/website/google.erb.tmpl deleted file mode 100644 index 9d10c08810d5..000000000000 --- a/mmv1/third_party/terraform/website/google.erb.tmpl +++ /dev/null @@ -1,85 +0,0 @@ -<% wrap_layout :inner do %> - <% content_for :sidebar do %> - - <% end %> - -<%= yield %> - <% end %> diff --git a/tpgtools/names.go b/tpgtools/names.go index 809940cd96cb..a07229803cc0 100644 --- a/tpgtools/names.go +++ b/tpgtools/names.go @@ -22,10 +22,6 @@ type lowercaseName interface { lowercase() string } -type kebabCaseName interface { - kebabcase() string -} - // e.g. `google_compute_instance` or `google_orgpolicy_policy`. type SnakeCaseTerraformResourceName string @@ -78,18 +74,6 @@ func snakeToTitleCase(s snakeCaseName) miscellaneousNameTitleCase { return miscellaneousNameTitleCase(strings.Join(snakeToParts(s, true), "")) } -// e.g. `google-compute-instance` or `google-orgpolicy-policy`. -type KebabCaseTerraformResourceName string - -// snakeToKebabCase converts a snake_case string to kebab case. -func snakeToKebabCase(s snakeCaseName) miscellaneousNameKebabCase { - return miscellaneousNameKebabCase(strings.Join(snakeToParts(s, false), "-")) -} - -func (s SnakeCaseFullName) ToKebab() RenderedString { - return RenderedString(snakeToKebabCase(s).kebabcase()) -} - // A type for a string that is not meant for further conversion. Some functions return a // RenderedString to indicate that they have been lossily converted to another format. type RenderedString string @@ -162,9 +146,3 @@ type miscellaneousNameLowercase string func (m miscellaneousNameLowercase) lowercase() string { return string(m) } - -type miscellaneousNameKebabCase string - -func (m miscellaneousNameKebabCase) kebabcase() string { - return string(m) -} diff --git a/tpgtools/resource.go b/tpgtools/resource.go index 41890b7bc6b0..36d834c6089e 100644 --- a/tpgtools/resource.go +++ b/tpgtools/resource.go @@ -229,12 +229,6 @@ func (r Resource) TerraformName() SnakeCaseFullName { return SnakeCaseFullName(concatenateSnakeCase(googlePrefix, r.ProductName(), r.Name())) } -// TerraformName is the Terraform resource type used for the sidebar_current field in documentation. -// For example, "google-compute-instance" -func (r Resource) SidebarCurrentName() KebabCaseTerraformResourceName { - return KebabCaseTerraformResourceName(r.TerraformName().ToKebab()) -} - // PathType is the title-cased name of a resource preceded by its package, // often used to namespace functions. For example, "RedisInstance". func (r Resource) PathType() TitleCaseFullName { diff --git a/tpgtools/templates/resource.html.markdown.tmpl b/tpgtools/templates/resource.html.markdown.tmpl index 22f612ff538b..6cb8c5d809dc 100644 --- a/tpgtools/templates/resource.html.markdown.tmpl +++ b/tpgtools/templates/resource.html.markdown.tmpl @@ -27,9 +27,7 @@ # # ---------------------------------------------------------------------------- subcategory: "{{$.DocsSection}}" -layout: "google" page_title: "Google: {{$.TerraformName}}" -sidebar_current: "docs-{{$.SidebarCurrentName}}" description: |- {{$.Description}} ---