-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
credit_specification should be updateable on new resources (T3 version) #5651
Comments
Hi @myoung34 👋 Can you please provide more details about this issue? According to the T3 instance product documentation:
|
Related? #5654 If so, we should consolidate tracking to that issue since it details the problem. |
I think mine is more to do with the fact that if you configure an autoscaling group with t3 types there's no way to disable Unlimited. Is there a better ticket to apply this to? |
@bflad I updated the description better |
I think I'm getting something very, very similar to the behaviour described here, if not identical; I've not had it with an ASG though. It's not quite the same as #5654 although it could well be a common cause between the two. What is happening is that when you perform an initial Apologies if I'm stepping on any toes; I'm happy to open this as a separate issue but that feels like more noise when this is basically the same problem. Here's a demonstration of it below; Terraform Version
Terraform Configuration FilesIn ec2_instance.tf: provider "aws" {
region = "eu-west-2"
}
resource "aws_instance" "test" {
ami = "ami-e1768386"
instance_type = "t3.micro"
credit_specification {
cpu_credits = "standard"
}
} Execution/Debug Outputhttps://gist.github.com/garethsaxby/14903fb6912de57291aed4faeed1161a |
Related #5654 |
The fix for this has been merged into master for the |
This has been released in version 1.37.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
@bflad what about launch configurations? |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Community Note
Terraform Version
All
Affected Resource(s)
Terraform Configuration Files
n/a
Debug Output
n/a
Panic Output
n/a
Expected Behavior
Able to disable unlimited feature for t3 instances
Actual Behavior
T3 instances have unlimited enabled
Steps to Reproduce
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: