Replies: 2 comments
-
Hi @dss010101 — it looks like the snippet you provided is using Terraform rather than the AWS CLI. You may want to reach out here instead: https://www.terraform.io/community. For general AWS questions you could also try the re:Post forums: https://repost.aws/. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have code that looks like below. When i apply this, initially there is one instance type of t3.micro created. When it scales, the next instance is still t3.micro. and if it scales once more the max capacity, that instance is still t3.micro.
What i would expect is the first instance would use the 'default' template, which should be t2.micro.
I would then want the next to be the first override, which is t3.micro.
lastly, on the 3rd scale up event, ideally i would like to see the 2nd override go into effect - which would be t3a.small.
How does this work and how would i achieve what im looking for above?
Beta Was this translation helpful? Give feedback.
All reactions