-
Notifications
You must be signed in to change notification settings - Fork 2.1k
update bastion machine type to variable in AWS HA terraform #47297
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
Changes from all commits
8e2159b
fafda7f
91eb349
6e28827
9dcd620
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,6 +38,12 @@ variable "node_instance_type" { | |
| default = "t4g.medium" | ||
| } | ||
|
|
||
| // Instance type used for bastion server | ||
| variable "bastion_instance_type" { | ||
| type = string | ||
| default = "t4g.medium" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the interest of having a more "friendly" experience for new users, maybe we could default this to null, then conditionally set the instance type deployed based off of the AMI architecture from
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I really like this idea, but think it's probably better implemented in a future PR as it'll require a fair bit more testing. |
||
| } | ||
|
|
||
| // SSH key name to provision instances withx | ||
| variable "key_name" { | ||
| type = string | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.