You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
The first template should use aws s3 cp instead of assuming that HTTPS is enabled for the bucket which contains the scripts/ folder and contents from this repo in addition to the license file. aws s3 cp will be guaranteed to work as long as the user enabled the bucket permissions correctly on the instance profile, but the HTTPS used here will only work if thats explicitly enabled on the bucket. This will silently fail and cause the issue described below.
I changed that section in the first template to this in order to get it work (after using cfn-flip to convert it to YAML):
I dont know if that aws s3 cp requires additional changes to handle the S3Region conditional for gov regions or if it will handle it transparently but that could easily be re-added.
The second template I think cant be changed since TemplateURL requires an HTTPS url so I think that should be noted in the requirements for this and possibly the above template.
https://github.com/aws-quickstart/quickstart-github-enterprise/blob/develop/templates/quickstart-github-enterprise.template#L564-L604
https://github.com/aws-quickstart/quickstart-github-enterprise/blob/develop/templates/quickstart-github-enterprise-master.template#L321
The first template should use
aws s3 cp
instead of assuming that HTTPS is enabled for the bucket which contains thescripts/
folder and contents from this repo in addition to the license file.aws s3 cp
will be guaranteed to work as long as the user enabled the bucket permissions correctly on the instance profile, but the HTTPS used here will only work if thats explicitly enabled on the bucket. This will silently fail and cause the issue described below.I changed that section in the first template to this in order to get it work (after using
cfn-flip
to convert it to YAML):I dont know if that
aws s3 cp
requires additional changes to handle the S3Region conditional for gov regions or if it will handle it transparently but that could easily be re-added.The second template I think cant be changed since
TemplateURL
requires an HTTPS url so I think that should be noted in the requirements for this and possibly the above template.One of the issues that causes #7
The text was updated successfully, but these errors were encountered: