diff --git a/blueprints/data-solutions/shielded-folder/README.md b/blueprints/data-solutions/shielded-folder/README.md
index c4b471bdd3..92868c35da 100644
--- a/blueprints/data-solutions/shielded-folder/README.md
+++ b/blueprints/data-solutions/shielded-folder/README.md
@@ -112,7 +112,7 @@ The Shielded Folder blueprint is meant to be executed by a Service Account (or a
- `roles/resourcemanager.folderAdmin`
- `roles/resourcemanager.projectCreator`
-The shielded Folfer blueprint assumes [groups described](#user-groups) are created in your GCP organization.
+The shielded Folder blueprint assumes [groups described](#user-groups) are created in your GCP organization.
### Variable configuration PIPPO
@@ -167,8 +167,8 @@ terraform apply
| [log_locations](variables.tf#L86) | Optional locations for GCS, BigQuery, and logging buckets created here. | object({…})
| | {…}
|
| [log_sinks](variables.tf#L103) | Org-level log sinks, in name => {type, filter} format. | map(object({…}))
| | {…}
|
| [vpc_sc_access_levels](variables.tf#L161) | VPC SC access level definitions. | map(object({…}))
| | {}
|
-| [vpc_sc_egress_policies](variables.tf#L190) | VPC SC egress policy defnitions. | map(object({…}))
| | {}
|
-| [vpc_sc_ingress_policies](variables.tf#L210) | VPC SC ingress policy defnitions. | map(object({…}))
| | {}
|
+| [vpc_sc_egress_policies](variables.tf#L190) | VPC SC egress policy definitions. | map(object({…}))
| | {}
|
+| [vpc_sc_ingress_policies](variables.tf#L210) | VPC SC ingress policy definitions. | map(object({…}))
| | {}
|
## Outputs
diff --git a/blueprints/data-solutions/shielded-folder/variables.tf b/blueprints/data-solutions/shielded-folder/variables.tf
index a9ecbb241b..f4ec8acb19 100644
--- a/blueprints/data-solutions/shielded-folder/variables.tf
+++ b/blueprints/data-solutions/shielded-folder/variables.tf
@@ -188,7 +188,7 @@ variable "vpc_sc_access_levels" {
}
variable "vpc_sc_egress_policies" {
- description = "VPC SC egress policy defnitions."
+ description = "VPC SC egress policy definitions."
type = map(object({
from = object({
identity_type = optional(string, "ANY_IDENTITY")
@@ -208,7 +208,7 @@ variable "vpc_sc_egress_policies" {
}
variable "vpc_sc_ingress_policies" {
- description = "VPC SC ingress policy defnitions."
+ description = "VPC SC ingress policy definitions."
type = map(object({
from = object({
access_levels = optional(list(string), [])
diff --git a/blueprints/data-solutions/vertex-mlops/README.md b/blueprints/data-solutions/vertex-mlops/README.md
index 4c918bbc27..ef6b98f671 100644
--- a/blueprints/data-solutions/vertex-mlops/README.md
+++ b/blueprints/data-solutions/vertex-mlops/README.md
@@ -36,7 +36,7 @@ Assign roles relying on User groups is a way to decouple the final set of permis
We use the following groups to control access to resources:
-- *Data Scientits* (gcp-ml-ds@). They manage notebooks and create ML pipelines.
+- *Data Scientist* (gcp-ml-ds@). They manage notebooks and create ML pipelines.
- *ML Engineers* (gcp-ml-eng@). They manage the different Vertex resources.
- *ML Viewer* (gcp-ml-eng@). Group with wiewer permission for the different resources.
@@ -80,7 +80,7 @@ module "test" {
| name | description | type | required | default |
|---|---|:---:|:---:|:---:|
-| [notebooks](variables.tf#L69) | Vertex AI workbenchs to be deployed. Service Account runtime/instances deployed. | map(object({…}))
| ✓ | |
+| [notebooks](variables.tf#L69) | Vertex AI workbenches to be deployed. Service Account runtime/instances deployed. | map(object({…}))
| ✓ | |
| [project_config](variables.tf#L96) | Provide 'billing_account_id' value if project creation is needed, uses existing 'project_id' if null. Parent is in 'folders/nnn' or 'organizations/nnn' format. | object({…})
| ✓ | |
| [bucket_name](variables.tf#L18) | GCS bucket name to store the Vertex AI artifacts. | string
| | null
|
| [dataset_name](variables.tf#L24) | BigQuery Dataset to store the training data. | string
| | null
|
diff --git a/blueprints/data-solutions/vertex-mlops/metadata.yaml b/blueprints/data-solutions/vertex-mlops/metadata.yaml
index d09c244738..bb12a5f93f 100644
--- a/blueprints/data-solutions/vertex-mlops/metadata.yaml
+++ b/blueprints/data-solutions/vertex-mlops/metadata.yaml
@@ -50,7 +50,7 @@ spec:
interfaces:
variables:
- name: notebooks
- description: Vertex AI workbenchs to be deployed. Service Account runtime/instances deployed.
+ description: Vertex AI workbenches to be deployed. Service Account runtime/instances deployed.
type: |-
map(object({
type = string
diff --git a/blueprints/data-solutions/vertex-mlops/variables.tf b/blueprints/data-solutions/vertex-mlops/variables.tf
index cc8200f9d4..d9e375dfb7 100644
--- a/blueprints/data-solutions/vertex-mlops/variables.tf
+++ b/blueprints/data-solutions/vertex-mlops/variables.tf
@@ -67,7 +67,7 @@ variable "network_config" {
}
variable "notebooks" {
- description = "Vertex AI workbenchs to be deployed. Service Account runtime/instances deployed."
+ description = "Vertex AI workbenches to be deployed. Service Account runtime/instances deployed."
type = map(object({
type = string
machine_type = optional(string, "n1-standard-4")