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 Reserved IP Resource to the Digitalocean Project Resources #1031

Open
mansoor4 opened this issue Sep 19, 2023 · 2 comments
Open

Add Reserved IP Resource to the Digitalocean Project Resources #1031

mansoor4 opened this issue Sep 19, 2023 · 2 comments
Labels
do-api Depends on changes to the DigitalOcean API

Comments

@mansoor4
Copy link

Is your feature request related to a problem? Please describe.

As floating IP is going to deprecated and as suggestion by digitalocean provider we can use reserved IP in replace of floating IP.
So I replace floating IP with reserved IP but digitalocean_project_resources does not yet support reserved IP.

Describe the solution you'd like

Please add reserved IP resource in digitalocean_project_resources

https://registry.terraform.io/providers/digitalocean/digitalocean/latest/docs/resources/project_resources

@andrewsomething andrewsomething added the do-api Depends on changes to the DigitalOcean API label Sep 19, 2023
@andrewsomething
Copy link
Member

Thanks for flagging this issue. We've raised it internally to the team working on the Projects API. In the meantime, you could work around the problem by using a floating IP style URN for the reserved IP.

resource "digitalocean_project_resources" "example" {
  project = digitalocean_project.example.id
  resources = [
    format("do:floatingip:%s", digitalocean_reserved_ip.example.ip_address)
  ]
}

@mansoor4
Copy link
Author

@andrewsomething any ETA for this fix?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
do-api Depends on changes to the DigitalOcean API
Projects
None yet
Development

No branches or pull requests

2 participants