Skip to content

Commit

Permalink
Fix base64 encoding 🤦🏾‍♂
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Nov 1, 2020
1 parent b1c892e commit c32c10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf-workspace/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ output "gw_test_cd_connection" {
value = <<EOF
cluster_endpoint: ${module.gw_test.gke_cluster_endpoint}
cluster_ca_certificate: ${module.gw_test.gke_cluster_ca_certificate}
sa_token: base64encode(${module.gw_test.cd_service_account_secret})
sa_token: ${base64encode(module.gw_test.cd_service_account_secret)}
EOF

sensitive = true
Expand Down

0 comments on commit c32c10c

Please sign in to comment.