-
Notifications
You must be signed in to change notification settings - Fork 95
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
support deploying on existing vpc on aws #1807
Conversation
**config.get("aws", {}).get("terraform_overrides", {}), | ||
**config.get("amazon_web_services", {}).get("terraform_overrides", {}), |
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.
These terraform overrides were not usable before as far as I can tell. You'd get an error from pydantic that extra fields (the aws
field) weren't allowed when I added an aws
section to the nebari-config.yaml.
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.
Now they can be used via (e.g.)
amazon_web_services:
terraform_overrides:
existing_subnet_ids: ["subnet-05b2b1f41f0b1d8a6", "subnet-017efc3309fbca2da"]
existing_security_group_id: "sg-0e2c865bdd8824b1a"
region: ...
<other_attributes>: ...
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 it worth formalizing these the available terraform_overrides
in the schema?
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.
@Adam-D-Lewis I had a few questions. This looks like a worthwhile addition :)
**config.get("aws", {}).get("terraform_overrides", {}), | ||
**config.get("amazon_web_services", {}).get("terraform_overrides", {}), |
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 it worth formalizing these the available terraform_overrides
in the schema?
Reference Issues or PRs
What does this implement/fix?
Put a
x
in the boxes that applyTesting
Any other comments?