-
Notifications
You must be signed in to change notification settings - Fork 19
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: Add module for Secure Storage Connector #52
Conversation
@@ -18,7 +18,7 @@ variable "cluster_version" { | |||
type = string | |||
default = "1.21" | |||
} | |||
|
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.
formatting
@@ -96,7 +96,7 @@ module "aurora" { | |||
instance_class = var.instance_class | |||
instances = { 1 = {} } | |||
|
|||
autoscaling_enabled = false | |||
autoscaling_enabled = false |
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.
formatting
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.
Overall looks great! Just a few reviews:
@@ -0,0 +1,69 @@ | |||
# Weights & Biases Secure Storage Connector Module |
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.
Is this meant to replace the BYOB example?
Maybe we should update that example to point at this implementation?
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.
yeah, they are pretty much the same, but you need to grant access to a different AWS account. I will update the BYOB example in a follow up.
output "bucket_name" { | ||
value = module.file_storage.bucket_name | ||
} | ||
|
||
output "bucket_arn" { | ||
value = module.file_storage.bucket_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.
I've starting perforing this approach, but up to you!
output "bucket_name" { | |
value = module.file_storage.bucket_name | |
} | |
output "bucket_arn" { | |
value = module.file_storage.bucket_arn | |
} | |
output "bucket" { | |
value = module.file_storage | |
} |
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.
done
output "bucket_kms_key_arn" { | ||
value = var.create_kms_key ? aws_kms_key.key[0].arn : null | ||
} |
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.
same idea here, return the entire object
## [1.11.0](v1.10.5...v1.11.0) (2023-02-28) ### Features * Add module for Secure Storage Connector ([#52](#52)) ([8f07c99](8f07c99))
This PR is included in version 1.11.0 🎉 |
No description provided.