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

Add resources for Cloud Task Queues #2367

Closed
zombiezen opened this issue Oct 30, 2018 · 9 comments
Closed

Add resources for Cloud Task Queues #2367

zombiezen opened this issue Oct 30, 2018 · 9 comments

Comments

@zombiezen
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment. If the issue is assigned to the "modular-magician" user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If the issue is assigned to a user, that user is claiming responsibility for the issue. If the issue is assigned to "hashibot", a community member has claimed the issue already.

Description

Google Cloud Tasks is a service that provides task queues for App Engine apps. Unlike App Engine task queues, they are managed through a REST API. Ideally, these could be provisioned using Terraform.

New or Affected Resource(s)

  • google_task_locations
  • google_task_queue

Potential Terraform Configuration

data "google_task_locations" "all" {
  project = "my-project"
}

resource "google_task_queue" "foo" {
  parent = "projects/my-project/locations/${data.google_task_locations.locations[0]}"
  name = "foo"
  rateLimits = ...
  retryConfig = ...
  appEngineRouting = ...
}

References

@mccall114
Copy link
Contributor

I've started a local branch for this, just need to write tests. Never contributed to this repo before -- do I need permission to push my branch?

@rileykarson
Copy link
Collaborator

rileykarson commented Jun 27, 2019

If you fork the repo (for example, I forked to https://github.com/rileykarson/terraform-provider-google) and push your branch there, you can make a pull request against this repo.

@JasperWoo
Copy link

What's the status of development for this feature?

@rambleraptor
Copy link
Contributor

Hello! I can take a look at this.

@rileykarson
Copy link
Collaborator

Hey @mccall114! A member of my team (@rambleraptor above) was interested in picking up this feature. If you've got substantial work staged on the feature, please let me know so that both of you don't repeat too much of the same work!

@mccall114
Copy link
Contributor

Hey @rileykarson & @rambleraptor. I got a lot of the functionality working in this branch of my fork. I didn't get around to finishing the tests, so feel free to pick up from where I left off or do your own thing.

@kdp8791
Copy link

kdp8791 commented Oct 15, 2019

Hi @mccall114 / @rambleraptor, any updates on when the Cloud Task changes will be available for use? Thank you!

@slevenick
Copy link
Collaborator

This was fixed via GoogleCloudPlatform/magic-modules#2662

and will be available soon

@ghost
Copy link

ghost commented Mar 29, 2020

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. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks!

@ghost ghost locked and limited conversation to collaborators Mar 29, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

9 participants