classification integration resources#486
Conversation
|
|
||
| resource "aws_s3_bucket" "scan_results_bucket" { | ||
| count = var.create_classification_integration_resources ? 1 : 0 | ||
| bucket = join("-", [local.deployment_name_salted, "scan", "results", "bucket"]) |
There was a problem hiding this comment.
can you rename it to fam_scan_results_bucket? also, there should be a unique identifier and Im not sure the deployment_name_salted is unique... also, I'll put the identifier in the end
There was a problem hiding this comment.
I can change the name, it salt should make it unique.
In dsfkit we always put the deployment_name_salted at the beginning.
|
|
||
| resource "aws_sqs_queue" "scan_results_bucket_notifications_sqs" { | ||
| count = var.create_classification_integration_resources ? 1 : 0 | ||
| name = join("-", [local.deployment_name_salted, "scan", "results", "bucket", "notifications", "sqs"]) |
There was a problem hiding this comment.
please add fam in the beginning, and if you can move the deployment salt to the end it will be also great
There was a problem hiding this comment.
Same.
I can change the name, it salt should make it unique.
In dsfkit we always put the deployment_name_salted at the beginning.
|
|
||
| resource "aws_iam_policy" "classification_integration_policy" { | ||
| count = var.create_classification_integration_resources ? 1 : 0 | ||
| name = join("-", [local.deployment_name_salted, "classification", "integration", "policy"]) |
There was a problem hiding this comment.
same comment as above regarding the fam and the deployment salt
ff9cbec to
db38b99
Compare
No description provided.