-
Notifications
You must be signed in to change notification settings - Fork 25
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
Enable logging with private s3 bucket #210
Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
e941483
Enable logging with private s3 bucket
alldoami c73ead2
redo condition
alldoami 9c33658
spacing
alldoami dc45c96
local ref
alldoami 0bf3868
default to false
alldoami 91368e6
change order of coalesce vars
alldoami b348316
modify descr
alldoami cdb0ec2
made new module
alldoami 113fb9d
updates
alldoami c50b54a
link
alldoami 23d0ebe
test
alldoami c6640c6
remove acl cuz grants and canned acl conflict ugh
alldoami bfda448
name change to reflect cloudwatch enabling
alldoami 347eb5c
update readme
alldoami 9fba513
whoops cloudwatch to cloudfront
alldoami b9999f1
outputs
alldoami af31aba
change output
alldoami 747466e
change output refs
alldoami 5f4aa06
remove outputs
alldoami 20d379e
fix output values
alldoami 9cbd7bd
outputs
alldoami 50c9322
remove comment
alldoami File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,3 +68,9 @@ variable grants { | |
default = [] | ||
description = "A list of canonical user ID to permissions pairs. Used when we want to grant permissions to AWS accounts via the S3 ACL system." | ||
} | ||
|
||
variable log_delivery_write_acl_enable { | ||
type = bool | ||
default = true | ||
alldoami marked this conversation as resolved.
Show resolved
Hide resolved
|
||
description = "Enables logging" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we have a more descriptive description? |
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think this needs a fix -- the log delivery flag will only work here if we have grants AND log_delivery_write_acl_enable set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
redid, but had to put in a try because hashicorp/terraform#25014
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did find this: hashicorp/terraform#22131 (comment), which is what I had previously.