How to handle "Provided value for option repo does not match regex" in GW Pipelines? #219
-
|
When running a How do I fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This is because the ECS Deploy Runner has been configured to restrict your repo to the ssh URL instead of https, but your script is trying to deploy using the https URL. The easiest way to resolve this would be to update the CI scripts so that it uses the SSH url instead of the HTTPS url for the Alternatively, you can update the In the ref arch, it’s managed here, which points to this local. You can add the https URL to that local and redeploy the |
Beta Was this translation helpful? Give feedback.
This is because the ECS Deploy Runner has been configured to restrict your repo to the ssh URL instead of https, but your script is trying to deploy using the https URL. The easiest way to resolve this would be to update the CI scripts so that it uses the SSH url instead of the HTTPS url for the
--repocall (e.g., you can try hardcoding therepo_urlvar here)Alternatively, you can update the
ecs-deploy-runnerto allow using the https URL. This setting is configured using theterraform_applier_config.infrastructure_live_repositoriessetting for theecs-deploy-runnermodule.In the ref arch, it’s managed here, which points to this local. You can add the https URL to that local and redeploy…