From da7629ec763980b7c59ddb3f523c56699417cb62 Mon Sep 17 00:00:00 2001 From: Mirko Montanari Date: Fri, 4 Oct 2019 13:43:22 -0700 Subject: [PATCH] Added the registry_project_id variable to the test script. --- test/setup/make_source.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/setup/make_source.sh b/test/setup/make_source.sh index b39944af41..ad3f57165a 100755 --- a/test/setup/make_source.sh +++ b/test/setup/make_source.sh @@ -19,6 +19,9 @@ echo "#!/usr/bin/env bash" > ../source.sh project_id=$(terraform output project_id) echo "export TF_VAR_project_id='$project_id'" >> ../source.sh +# We use the same project for registry project in the tests. +echo "export TF_VAR_registry_project_id='$project_id'" >> ../source.sh + sa_json=$(terraform output sa_key) # shellcheck disable=SC2086 echo "export SERVICE_ACCOUNT_JSON='$(echo $sa_json | base64 --decode)'" >> ../source.sh