-
-
Notifications
You must be signed in to change notification settings - Fork 839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use website inputs #141
Comments
Confirmed. You probably cannot use CORS rules, either. Sorry about that. |
Sure, I have a PR open but I am not totally on top of your eco system so have some pending questions. Feel free to take over it or trash it as you please. |
@jurgen-weber-deltatre I plan to fix this along with #137 when AWS provider v4.9.0 is released. You do not need to do any more work on fixing this problem, but if you could provide a test case under |
Any update on this? Also, how can one get website_endpoint of bucket created using this module? Can't find anything in output.tf. |
@rstml we are tracking a fix for this in #142 |
Thanks for the update, @Nuru. Decided to use the following workaround and extend this module with vanilla tf: module "s3_bucket" {
source = "cloudposse/s3-bucket/aws"
version = "2.0.0"
//...
}
resource "aws_s3_bucket_website_configuration" "s3_bucket_website" {
bucket = module.s3_bucket.bucket_id
//...
}
output "website_endpoint" {
value = aws_s3_bucket_website_configuration.s3_bucket_website.website_endpoint
} |
Found a bug? Maybe our Slack Community can help.
Describe the Bug
Unable to use website inputs, attempting to upgrade from AWS provider v3 to v4 (hence updating to current).
Expected Behavior
I expect my plan to complete, creating the website inputs.
Steps to Reproduce
Steps to reproduce the behavior:
Screenshots
If applicable, add screenshots or logs to help explain your problem.
Environment (please complete the following information):
Anything that will help us triage the bug will help. Here are some ideas:
Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: