Merge remote-tracking branch 'origin/master' into fast-dev

This commit is contained in:
Ludovico Magnocavallo
2025-10-30 16:55:28 +00:00
9 changed files with 23 additions and 31 deletions

View File

@@ -297,12 +297,11 @@ module "cluster-1" {
| [cluster](outputs.tf#L23) | Cluster resource. | ✓ |
| [dns_endpoint](outputs.tf#L29) | Control plane DNS endpoint. | |
| [endpoint](outputs.tf#L37) | Cluster endpoint. | |
| [fleet](outputs.tf#L42) | GKE Fleet Membership. | |
| [id](outputs.tf#L47) | Fully qualified cluster ID. | |
| [location](outputs.tf#L52) | Cluster location. | |
| [master_version](outputs.tf#L57) | Master version. | |
| [name](outputs.tf#L62) | Cluster name. | |
| [notifications](outputs.tf#L67) | GKE Pub/Sub notifications topic. | |
| [self_link](outputs.tf#L72) | Cluster self link. | |
| [workload_identity_pool](outputs.tf#L78) | Workload identity pool. | |
| [id](outputs.tf#L42) | Fully qualified cluster ID. | |
| [location](outputs.tf#L47) | Cluster location. | |
| [master_version](outputs.tf#L52) | Master version. | |
| [name](outputs.tf#L57) | Cluster name. | |
| [notifications](outputs.tf#L62) | GKE Pub/Sub notifications topic. | |
| [self_link](outputs.tf#L67) | Cluster self link. | |
| [workload_identity_pool](outputs.tf#L73) | Workload identity pool. | |
<!-- END TFDOC -->

View File

@@ -39,11 +39,6 @@ output "endpoint" {
value = google_container_cluster.cluster.endpoint
}
output "fleet" {
description = "GKE Fleet Membership."
value = google_container_cluster.cluster.endpoint
}
output "id" {
description = "Fully qualified cluster ID."
value = google_container_cluster.cluster.id

View File

@@ -543,12 +543,11 @@ module "cluster-1" {
| [cluster](outputs.tf#L25) | Cluster resource. | ✓ |
| [dns_endpoint](outputs.tf#L31) | Control plane DNS endpoint. | |
| [endpoint](outputs.tf#L39) | Cluster endpoint. | |
| [fleet](outputs.tf#L44) | GKE Fleet Membership. | |
| [id](outputs.tf#L49) | FUlly qualified cluster id. | |
| [location](outputs.tf#L54) | Cluster location. | |
| [master_version](outputs.tf#L59) | Master version. | |
| [name](outputs.tf#L64) | Cluster name. | |
| [notifications](outputs.tf#L69) | GKE PubSub notifications topic. | |
| [self_link](outputs.tf#L74) | Cluster self link. | |
| [workload_identity_pool](outputs.tf#L80) | Workload identity pool. | |
| [id](outputs.tf#L44) | FUlly qualified cluster id. | |
| [location](outputs.tf#L49) | Cluster location. | |
| [master_version](outputs.tf#L54) | Master version. | |
| [name](outputs.tf#L59) | Cluster name. | |
| [notifications](outputs.tf#L64) | GKE PubSub notifications topic. | |
| [self_link](outputs.tf#L69) | Cluster self link. | |
| [workload_identity_pool](outputs.tf#L75) | Workload identity pool. | |
<!-- END TFDOC -->

View File

@@ -41,11 +41,6 @@ output "endpoint" {
value = google_container_cluster.cluster.endpoint
}
output "fleet" {
description = "GKE Fleet Membership."
value = google_container_cluster.cluster.endpoint
}
output "id" {
description = "FUlly qualified cluster id."
value = google_container_cluster.cluster.id

View File

@@ -37,6 +37,7 @@ locals {
_projects_raw = {
for f in try(fileset(local._projects_path, "**/*.yaml"), []) :
trimsuffix(f, ".yaml") => yamldecode(file("${local._projects_path}/${f}"))
if !endswith(f, ".config.yaml")
}
_templates_path = try(
pathexpand(var.factories_config.project_templates), null