-
Notifications
You must be signed in to change notification settings - Fork 286
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
Comments
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)
]
} |
@andrewsomething any ETA for this fix? |
Note: project resources seem to add the reserved IP now, but still use resource "digitalocean_project" "example" {
name = "Example"
description = "example"
purpose = "Web Application"
environment = "production"
resources = [
digitalocean_droplet.webapp.urn,
digitalocean_reserved_ip.webapp.urn,
]
} This applies fine, but running And attempting to I have to |
please address this issue, ty 😸 |
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
The text was updated successfully, but these errors were encountered: