You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you change multiple Elastic Beanstalk Configuration Template settings with different names in the same apply, Terraform will incorrectly update the template.
Terraform Version
0.10.7
Terraform Configuration Files
Step 1
resource "aws_elastic_beanstalk_configuration_template" "eb_test_configuration_template" {
name = "eb-test-configuration-template"
application = "${aws_elastic_beanstalk_application.eb_test.name}"
solution_stack_name = "${var.solution_stack}"
setting {
namespace = "aws:elasticbeanstalk:application:environment"
name = "TEST"
value = "0"
}
Step 2
resource "aws_elastic_beanstalk_configuration_template" "eb_test_configuration_template" {
name = "eb-test-configuration-template"
application = "${aws_elastic_beanstalk_application.eb_test.name}"
solution_stack_name = "${var.solution_stack}"
setting {
namespace = "aws:elasticbeanstalk:application:environment"
name = "TEST"
value = "2"
}
setting {
namespace = "aws:elasticbeanstalk:application:environment"
name = "TEST2"
value = "1"
}
This issue has been automatically migrated to hashicorp/terraform-provider-aws#1971 because it looks like an issue with that provider. If you believe this is not an issue with the provider, please reply to this issue and let us know.
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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
Apr 6, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If you change multiple Elastic Beanstalk Configuration Template settings with different names in the same apply, Terraform will incorrectly update the template.
Terraform Version
0.10.7
Terraform Configuration Files
Step 1
Step 2
Debug Output
Terminal Output
Generated Template
Expected Behavior
TEST: 0
TEST: 2
andTEST2: 1
Actual Behavior
TEST: 0
TEST2: 1
and does not reflect the Terraform resourceSteps to Reproduce
References
Possibly related:
The text was updated successfully, but these errors were encountered: