Skip to content

Commit afd420b

Browse files
authored
fix: update attached modules (#783)
1 parent 8370728 commit afd420b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

anthos-attached-clusters/kind/oidc/outputs.tf

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2024 Google LLC
2+
* Copyright 2024-2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,5 +19,6 @@ output "issuer" {
1919
}
2020

2121
output "jwks" {
22-
value = base64encode(data.http.jwks.response_body)
22+
value = base64encode(data.http.jwks.response_body)
23+
sensitive = true
2324
}

anthos-attached-clusters/modules/attached-install-manifest/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2024 Google LLC
2+
* Copyright 2024-2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@ resource "local_file" "bootstrap_helm_chart" {
3535
content = <<-EOT
3636
apiVersion: v2
3737
name: ${local.helm_chart_name}
38-
version: 0.0.0
38+
version: ${var.platform_version}
3939
type: application
4040
EOT
4141
}

0 commit comments

Comments
 (0)