-
Notifications
You must be signed in to change notification settings - Fork 13
Closed
Labels
Milestone
Description
What area do you want to see improved?
terraform provider
Is your feature request related to a problem? Please describe.
We're using the cloudfoundry_network_policy resource of the community provider to allow container-to-container communication on our internal routes. There is no analogous resource in the new provider
Describe the solution you would like
A new cloudfoundry_network_policy resource to be able to fully migrate off of the community provider. The format of the old one is fine with me, but it would also be fine to change it.
Example of the old policy in use:
resource "cloudfoundry_network_policy" "backend_routing" {
policy {
source_app = data.cloudfoundry_app.source.id
destination_app = data.cloudfoundry_app.destination.id
port = "61443"
}
}
Describe alternatives you have considered
No response
Additional context
No response
Reactions are currently unavailable