-
Notifications
You must be signed in to change notification settings - Fork 1
CCM-12481 migrating the S3 quarantine bucket up to the acct component #711
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
base: main
Are you sure you want to change the base?
Conversation
| bucket_name = module.s3bucket_quarantine.id | ||
| object_prefixes = ["pdf-template/", "test-data/", "proofs/"] | ||
| bucket_name = data.aws_s3_bucket.quarantine.id | ||
| object_prefixes = ["${local.csi}/pdf-template/", "${local.csi}/test-data/", "${local.csi}/proofs/"] |
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.
Should this be part of the acct level component and be independent of the csi?
| ] | ||
|
|
||
| resources = ["${module.s3bucket_quarantine.arn}/*"] | ||
| resources = ["${data.aws_s3_bucket.quarantine.arn}/*"] |
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.
Can we restrict access to csi scoped objects?
e.g. something like "${data.aws_s3_bucket.quarantine.arn}/${local.csi}/*"
| ] | ||
|
|
||
| resources = ["${module.s3bucket_quarantine.arn}/*"] | ||
| resources = ["${data.aws_s3_bucket.quarantine.arn}/*"] |
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.
Can we restrict access to csi scoped objects?
e.g. something like "${data.aws_s3_bucket.quarantine.arn}/${local.csi}/*"
| ] | ||
|
|
||
| resources = ["${module.s3bucket_quarantine.arn}/*"] | ||
| resources = ["${data.aws_s3_bucket.quarantine.arn}/*"] |
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.
Can we restrict access to csi scoped objects?
e.g. something like "${data.aws_s3_bucket.quarantine.arn}/${local.csi}/*"
| ] | ||
|
|
||
| resources = ["${module.s3bucket_quarantine.arn}/*"] | ||
| resources = ["${data.aws_s3_bucket.quarantine.arn}/*"] |
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.
Can we restrict access to csi scoped objects?
e.g. something like "${data.aws_s3_bucket.quarantine.arn}/${local.csi}/*"
| resources = [ | ||
| "${module.s3bucket_quarantine.arn}/test-data/*", | ||
| "${module.s3bucket_quarantine.arn}/pdf-template/*", | ||
| "${data.aws_s3_bucket.quarantine.arn}/test-data/*", |
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.
Can we restrict access to csi scoped objects?
e.g. something like "${data.aws_s3_bucket.quarantine.arn}/${local.csi}/test-data/*"
|
This should leave the existing bucket in place to allow a migration over of the |
mark-r-bjss
left a comment
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.
Not safe to get rid of the quarantine bucket without updating the aws_cloudwatch_event_rules
mark-r-bjss
left a comment
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.
Not safe to get rid of the quarantine bucket without updating the aws_cloudwatch_event_rules
Description
Migrating the quarantine S3 bucket up and out to the acct component
Context
Type of changes
Checklist
Sensitive Information Declaration
To ensure the utmost confidentiality and protect your and others privacy, we kindly ask you to NOT including PII (Personal Identifiable Information) / PID (Personal Identifiable Data) or any other sensitive data in this PR (Pull Request) and the codebase changes. We will remove any PR that do contain any sensitive information. We really appreciate your cooperation in this matter.