feat: Add supprot for creating placement group for managed node group (#2959)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
James Masson
2024-03-09 23:34:50 +00:00
committed by GitHub
parent 0be0a99b1a
commit 30316312f3
4 changed files with 19 additions and 3 deletions

View File

@@ -276,6 +276,18 @@ variable "placement" {
default = {}
}
variable "create_placement_group" {
description = "Determines whether a placement group is created & used by the nodegroup"
type = bool
default = false
}
variable "placement_group_strategy" {
description = "The placement group strategy"
type = string
default = "cluster"
}
variable "private_dns_name_options" {
description = "The options for the instance hostname. The default values are inherited from the subnet"
type = map(string)