mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
cli: temporarily increase AWS ASG creation timeout (#2340)
* increase ASG timeout Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * make timeout dependent on SEV-SNP option Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
This commit is contained in:
parent
f3f4944239
commit
dc837eddb5
@ -84,6 +84,11 @@ resource "aws_autoscaling_group" "autoscaling_group" {
|
||||
vpc_zone_identifier = [var.subnetwork]
|
||||
target_group_arns = var.target_group_arns
|
||||
|
||||
# TODO(msanft): Remove this (to have the 10m default) once AWS SEV-SNP boot problems are resolved.
|
||||
# Set a higher timeout for the ASG to fulfill the desired healthy capcity. Temporary workaround to
|
||||
# long boot times on SEV-SNP machines on AWS.
|
||||
wait_for_capacity_timeout = var.enable_snp ? "20m" : "10m"
|
||||
|
||||
dynamic "tag" {
|
||||
for_each = var.tags
|
||||
content {
|
||||
|
Loading…
Reference in New Issue
Block a user