Skip to content

Commit 17c964a

Browse files
JohannesRudolphmeshkodiak[bot]
authored and
meshkodiak[bot]
committed
refactor: clarify service account key output names
reduces confusion when pasting configuration into meshPanel and wondering whether the credentials can be copy/pasted form terraform output as is
1 parent 288e10d commit 17c964a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ No resources.
180180
|------|-------------|
181181
| <a name="output_carbon_footprint_export_table_name"></a> [carbon\_footprint\_export\_table\_name](#output\_carbon\_footprint\_export\_table\_name) | The BigQuery table name containing the GCP Carbon Footprint BigQuery export. |
182182
| <a name="output_cloud_billing_export_table_name"></a> [cloud\_billing\_export\_table\_name](#output\_cloud\_billing\_export\_table\_name) | The BigQuery table name containing the GCP Cloud Billing BigQuery export. |
183+
| <a name="output_kraken_sa_credentials_json"></a> [kraken\_sa\_credentials\_json](#output\_kraken\_sa\_credentials\_json) | Kraken service account key in credentials.json format, base64 encoded. |
183184
| <a name="output_kraken_sa_email"></a> [kraken\_sa\_email](#output\_kraken\_sa\_email) | Kraken service account email. |
184-
| <a name="output_kraken_sa_key"></a> [kraken\_sa\_key](#output\_kraken\_sa\_key) | Kraken service account key. |
185185
| <a name="output_replicator_manual_setup"></a> [replicator\_manual\_setup](#output\_replicator\_manual\_setup) | Replicator service account setup information. |
186+
| <a name="output_replicator_sa_credentials_json"></a> [replicator\_sa\_credentials\_json](#output\_replicator\_sa\_credentials\_json) | Replicator service account key in credentials.json format, base64 encoded. |
186187
| <a name="output_replicator_sa_email"></a> [replicator\_sa\_email](#output\_replicator\_sa\_email) | Replicator service account email. |
187-
| <a name="output_replicator_sa_key"></a> [replicator\_sa\_key](#output\_replicator\_sa\_key) | Replicator service account key (base64 encoded credential.json). |
188188
<!-- END_TF_DOCS -->

outputs.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ output "replicator_sa_email" {
33
description = "Replicator service account email."
44
}
55

6-
output "replicator_sa_key" {
7-
description = "Replicator service account key (base64 encoded credential.json)."
6+
output "replicator_sa_credentials_json" {
7+
description = "Replicator service account key in credentials.json format, base64 encoded."
88
value = module.replicator_sa.sa_key
99
sensitive = true
1010
}
@@ -19,8 +19,8 @@ output "kraken_sa_email" {
1919
description = "Kraken service account email."
2020
}
2121

22-
output "kraken_sa_key" {
23-
description = "Kraken service account key."
22+
output "kraken_sa_credentials_json" {
23+
description = "Kraken service account key in credentials.json format, base64 encoded."
2424
value = module.kraken_sa.sa_key
2525
sensitive = true
2626
}

0 commit comments

Comments
 (0)