-
Notifications
You must be signed in to change notification settings - Fork 92
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
feat: adding cmek settings in log bucket #191
feat: adding cmek settings in log bucket #191
Conversation
@imrannayer Can you please trigger the pipeline ? |
modules/logbucket/main.tf
Outdated
@@ -40,6 +40,9 @@ resource "google_logging_project_bucket_config" "bucket" { | |||
enable_analytics = var.enable_analytics | |||
bucket_id = var.name | |||
locked = var.locked | |||
cmek_settings { |
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.
@Saloni-Patidar This code will be optional and should execute when keys are provided. Check storage module how to handle it?
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.
@imrannayer should we add a new folder with these settings as an option?
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.
@Saloni-Patidar no need for a separate folder. Just add conditional execution of this block so it will only execute when cmek keys are provided.
@imrannayer can you check this now? |
/gcbrun |
/gcbrun |
@imrannayer how can we solve this error? |
/gcbrun |
@imrannayer are we good to merge this? |
Adding cmek_settings in log bucket.