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
I'm actually trying to create 3 simple queues And I just realized that if I use the last version (1.2.0) terraform doesnt recognize that terraform has to create the SQS Queue, but if I use the version 1.1.0 the queue will be created. I'm losing some parameter or something that says to terraform to create de queue with 1.2.0 version? Or it's a bug in this new version?
Here is the sqs.tf that I'm using:
module "sqs_1" {
source = "terraform-aws-modules/sqs/aws"
version = "1.1.0"
delay_seconds = "60"
name = "sqs_queue_1"
}
module "sqs_2" {
source = "terraform-aws-modules/sqs/aws"
version = "1.2.0"
delay_seconds = "60"
name = "sqs_queue_2"
}
module "sqs_3" {
source = "terraform-aws-modules/sqs/aws"
version = "1.2.0"
delay_seconds = "60"
name = "sqs_queue_3"
}
And the result when I plan this .tf terraform that only will create the one with the old version:
------------------------------------------------------------------------
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
+ module.sqs_1.aws_sqs_queue.this
id: <computed>
arn: <computed>
content_based_deduplication: "false"
delay_seconds: "60"
fifo_queue: "false"
kms_data_key_reuse_period_seconds: <computed>
max_message_size: "262144"
message_retention_seconds: "345600"
name: "sqs_queue_1"
policy: <computed>
receive_wait_time_seconds: "0"
visibility_timeout_seconds: "30"
Plan: 1 to add, 0 to change, 0 to destroy.
------------------------------------------------------------------------
Thanks for your attention
Kind regards!
The text was updated successfully, but these errors were encountered:
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.
Hi there!
I'm actually trying to create 3 simple queues And I just realized that if I use the last version (1.2.0) terraform doesnt recognize that terraform has to create the SQS Queue, but if I use the version 1.1.0 the queue will be created. I'm losing some parameter or something that says to terraform to create de queue with 1.2.0 version? Or it's a bug in this new version?
Here is the sqs.tf that I'm using:
And the result when I plan this .tf terraform that only will create the one with the old version:
Thanks for your attention
Kind regards!
The text was updated successfully, but these errors were encountered: