@@ -75,12 +75,36 @@ output "cluster_name" {
75
75
value = module. example . cluster_name
76
76
}
77
77
78
- output "k8s_service_account_email" {
79
- description = " K8S GCP service account."
80
- value = module. example . k8s_service_account_email
78
+ # Default instantiation of WI module
79
+ output "default_wi_email" {
80
+ description = " GCP service account."
81
+ value = module. example . default_wi_email
81
82
}
82
83
83
- output "k8s_service_account_name " {
84
+ output "default_wi_ksa_name " {
84
85
description = " K8S GCP service account name."
85
- value = module. example . k8s_service_account_name
86
+ value = module. example . default_wi_ksa_name
86
87
}
88
+
89
+ # Existing KSA instantiation of WI module
90
+ output "existing_ksa_email" {
91
+ description = " GCP service account."
92
+ value = module. example . existing_ksa_email
93
+ }
94
+
95
+ output "existing_ksa_name" {
96
+ description = " K8S GCP service name"
97
+ value = module. example . existing_ksa_name
98
+ }
99
+
100
+ # Existing GSA instantiation of WI module
101
+ output "existing_gsa_email" {
102
+ description = " GCP service account."
103
+ value = module. example . existing_gsa_email
104
+ }
105
+
106
+ output "existing_gsa_name" {
107
+ description = " K8S GCP service name"
108
+ value = module. example . existing_gsa_name
109
+ }
110
+
0 commit comments