Several wording and typos updates

Several wording and typos updates
This commit is contained in:
Alejandro Leal
2024-06-26 15:39:19 -04:00
committed by Wiktor Niesiobędzki
parent 00080cd840
commit 0363e2cb80
15 changed files with 16 additions and 16 deletions

View File

@@ -89,7 +89,7 @@ The only change for FAST factories will be moving the project factory from bluep
### File schema and filesystem organization
Factory files schema must mimick and implement the variable interface for the module, including optionals and validation - which are implemented in code and checks.
Factory files schema must mimic and implement the variable interface for the module, including optionals and validation - which are implemented in code and checks.
With notable exceptions (currently only the `cidrs.yaml` file consumed by firewall factories), the following convention for files/directory is proposed:

View File

@@ -156,7 +156,7 @@ variable "fields" {
condition = alltrue([for v1 in var.fields :
v1.indexes == null ? true : alltrue([for v2 in coalesce(v1.indexes, []) :
!(v2.order != null && v2.array_config != null)])])
error_message = "Either order or array_config should be specificied, but not both."
error_message = "Either order or array_config should be specified, but not both."
}
}

View File

@@ -79,7 +79,7 @@ variable "endpoint_types" {
"ENDPOINT_TYPE_MANAGED_PROXY_LB",
])
)
error_message = "Proivde one of: ENDPOINT_TYPE_VM, ENDPOINT_TYPE_SWG or ENDPOINT_TYPE_MANAGED_PROXY_LB as endpoint_types"
error_message = "Provide one of: ENDPOINT_TYPE_VM, ENDPOINT_TYPE_SWG or ENDPOINT_TYPE_MANAGED_PROXY_LB as endpoint_types"
}
}

View File

@@ -856,7 +856,7 @@ module "glb-0" {
```
## Deploying changes to load balancer configurations
Load balancers consists of many resources depending on each other. The [Global external Application Load Balancer architecture for serverless apps diagram](https://cloud.google.com/load-balancing/docs/application-load-balancer#global-external) shows the structure of a Global external Application Load Balancer, but others are similiar.
Load balancers consists of many resources depending on each other. The [Global external Application Load Balancer architecture for serverless apps diagram](https://cloud.google.com/load-balancing/docs/application-load-balancer#global-external) shows the structure of a Global external Application Load Balancer, but others are similar.
![Global external Application Load Balancer architecture for serverless apps diagram](https://cloud.google.com/static/load-balancing/images/lb-serverless-simple-ext-https.svg)

View File

@@ -15,7 +15,7 @@ The factory is implemented as a thin data translation layer for the underlying m
The code is meant to be executed by a high level service accounts with powerful permissions:
- forlder admin permissions for the hierarchy
- folder admin permissions for the hierarchy
- project creation on the nodes (folder or org) where projects will be defined
- Shared VPC connection if service project attachment is desired
- billing cost manager permissions to manage budgets and monitoring permissions if notifications should also be managed here