File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
.github/workflows/actions/deploy-terraform-infrastructure Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,11 @@ runs:
214
214
chmod u+x ./assets/tools/utils/google-credentials-public-key.sh
215
215
./assets/tools/utils/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys-${{ inputs.google_compute_instance_ssh_keys_environment }} curry
216
216
217
+ - name : Prepare variables
218
+ shell : bash
219
+ id : prepare
220
+ run : echo "mithril_aggregator_ancillary_signer_gcp_kms_credentials_base64=$(echo '${{ inputs.mithril_aggregator_ancillary_signer_gcp_kms_credentials }}' | base64 -w 0)" >> $GITHUB_OUTPUT
221
+
217
222
- name : Prepare terraform variables
218
223
shell : bash
219
224
working-directory : mithril-infra
@@ -264,7 +269,7 @@ runs:
264
269
mithril_aggregator_ancillary_signer_type = "${{ inputs.mithril_aggregator_ancillary_signer_type }}"
265
270
mithril_aggregator_ancillary_signer_secret_key = "${{ inputs.mithril_aggregator_ancillary_signer_secret_key }}"
266
271
mithril_aggregator_ancillary_signer_gcp_kms_resource_name = "${{ inputs.mithril_aggregator_ancillary_signer_gcp_kms_resource_name }}"
267
- mithril_aggregator_ancillary_signer_gcp_kms_credentials = "${{ inputs.mithril_aggregator_ancillary_signer_gcp_kms_credentials }}"
272
+ mithril_aggregator_ancillary_signer_gcp_kms_credentials = "${{ steps.prepare.outputs.mithril_aggregator_ancillary_signer_gcp_kms_credentials_base64 }}"
268
273
prometheus_auth_username = "${{ inputs.prometheus_auth_username }}"
269
274
prometheus_auth_password = "${{ inputs.prometheus_auth_password }}"
270
275
prometheus_ingest_host = "${{ inputs.prometheus_ingest_host }}"
You can’t perform that action at this time.
0 commit comments