-
Notifications
You must be signed in to change notification settings - Fork 32
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
Remove secrets manager #121
Conversation
Important Auto Review SkippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the WalkthroughThe changes reflect the removal of the Secrets Manager component from an ML stack configuration across various cloud providers (AWS, GCP) and local (k3d) environments. This includes the elimination of related variables, outputs, and configurations within the Terraform modules. Additionally, there are adjustments to other components, such as the experiment tracker, and updates to comments reflecting the current state of enabled services. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on X ? TipsChat with CodeRabbit Bot (
|
@coderabbitai review |
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.
Review Status
Actionable comments generated: 0
Configuration used: .coderabbit.yaml
Files selected for processing (9)
- src/mlstacks/enums.py (1 hunks)
- src/mlstacks/terraform/aws-modular/output_file.tf (1 hunks)
- src/mlstacks/terraform/aws-modular/outputs.tf (2 hunks)
- src/mlstacks/terraform/aws-modular/variables.tf (1 hunks)
- src/mlstacks/terraform/gcp-modular/enable_services.tf (1 hunks)
- src/mlstacks/terraform/gcp-modular/output_file.tf (1 hunks)
- src/mlstacks/terraform/gcp-modular/outputs.tf (1 hunks)
- src/mlstacks/terraform/gcp-modular/variables.tf (1 hunks)
- src/mlstacks/terraform/k3d-modular/output_stack.tf (1 hunks)
Files skipped from review due to trivial changes (1)
- src/mlstacks/terraform/gcp-modular/output_file.tf
Additional comments: 8
src/mlstacks/enums.py (1)
- 22-27: The removal of
SECRETS_MANAGER
fromComponentTypeEnum
aligns with the PR's objective to remove the secrets manager functionality. Ensure that this change is reflected whereverComponentTypeEnum
is used throughout the project.src/mlstacks/terraform/aws-modular/output_file.tf (1)
- 65-67: The removal of the secrets manager block in
output_file.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect these outputs.src/mlstacks/terraform/aws-modular/outputs.tf (1)
- 87-89: The removal of secrets manager outputs in
outputs.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect these outputs.src/mlstacks/terraform/aws-modular/variables.tf (1)
- 7-9: The removal of the
enable_secrets_manager
variable invariables.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect this variable.src/mlstacks/terraform/gcp-modular/enable_services.tf (1)
- 6-11: The removal of the Secret Manager service declaration in
enable_services.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect this service to be enabled.src/mlstacks/terraform/gcp-modular/outputs.tf (1)
- 103-105: The removal of secrets manager outputs in
outputs.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect these outputs.src/mlstacks/terraform/gcp-modular/variables.tf (1)
- 7-12: The removal of the
enable_secrets_manager
variable invariables.tf
is consistent with the PR's objective. Ensure that the removal does not affect any dependencies that might expect this variable.src/mlstacks/terraform/k3d-modular/output_stack.tf (1)
- 87-92: The removal of secrets manager related declarations in
output_stack.tf
is consistent with the PR's objective. Additionally, the new filename assignment appears correct and should be verified to ensure it aligns with the intended file naming conventions.
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 suggested you use 0.53.1
since we're rolling it out right now, but looks good otherwise.
Co-authored-by: Stefan Nica <stefan@zenml.io>
This pull request removes the secrets_manager enum and related code from the project. This change is necessary because the secrets_manager functionality is no longer needed and removing it will simplify the codebase.
Secrets manager is removed from the Terraform scripts as well as the stack output files. (Also removed from the enum of valid component types).
Summary by CodeRabbit
Refactor
Documentation
Chores