Skip to content
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

Does not recognize the creation of the sqs queue #4

Closed
Keralin opened this issue Jun 5, 2018 · 3 comments
Closed

Does not recognize the creation of the sqs queue #4

Keralin opened this issue Jun 5, 2018 · 3 comments

Comments

@Keralin
Copy link

Keralin commented Jun 5, 2018

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:

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!

@antonbabenko
Copy link
Member

Thank you for reporting this issue!

v1.2.1 has been released.

@Keralin
Copy link
Author

Keralin commented Jun 5, 2018

Perfect, now it works with the 1.2.1 version

Thank you so much!

@github-actions
Copy link

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.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants