From 3d8822d365b0fc7e4cb6e0aa15fe95ebdb05b963 Mon Sep 17 00:00:00 2001 From: Christoph Grotz Date: Fri, 24 Feb 2023 16:39:39 +0000 Subject: [PATCH] fixed tfdocs --- blueprints/networking/psc-glb-and-armor/README.md | 14 +++----------- .../networking/psc-glb-and-armor/variables.tf | 3 +++ 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/blueprints/networking/psc-glb-and-armor/README.md b/blueprints/networking/psc-glb-and-armor/README.md index 8e1becfa..ee87d306 100644 --- a/blueprints/networking/psc-glb-and-armor/README.md +++ b/blueprints/networking/psc-glb-and-armor/README.md @@ -99,16 +99,8 @@ The above command will delete the associated resources so there will be no billa | name | description | type | required | default | |---|---|:---:|:---:|:---:| -| [prefix](variables.tf#L23) | Prefix used for resource names. | string | ✓ | | -| [project_id](variables.tf#L41) | Identifier of the project. | string | ✓ | | -| [enforce_security_policy](variables.tf#L17) | Enforce security policy. | bool | | true | -| [project_create](variables.tf#L32) | Parameters for the creation of the new project. | object({…}) | | null | - -## Outputs - -| name | description | sensitive | -|---|---|:---:| -| [glb_ip_address](outputs.tf#L18) | Load balancer IP address. | | -| [vm_siege_external_ip](outputs.tf#L23) | Siege VM external IP address. | | +| [consumer_project_id](variables.tf#L17) | The consumer project, in which the GCLB and Cloud Armor should be created. | | ✓ | | +| [producer_project_id](variables.tf#L20) | The producer project, in which the ILB, PSC Service Attachment and Cloud Run service should be created | | ✓ | | +| [region](variables.tf#L24) | The GCP region in which the resources should be deployed. | | | europe-west1 | diff --git a/blueprints/networking/psc-glb-and-armor/variables.tf b/blueprints/networking/psc-glb-and-armor/variables.tf index 9a3c91b2..76c20ae2 100644 --- a/blueprints/networking/psc-glb-and-armor/variables.tf +++ b/blueprints/networking/psc-glb-and-armor/variables.tf @@ -15,10 +15,13 @@ */ variable "consumer_project_id" { + description = "The consumer project, in which the GCLB and Cloud Armor should be created." } variable "producer_project_id" { + description = "The producer project, in which the ILB, PSC Service Attachment and Cloud Run service should be created" } variable "region" { default = "europe-west1" + description = "The GCP region in which the resources should be deployed." } \ No newline at end of file