You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A problem has been identified with the cloudfoundry-community/terraform-provider-cloudfoundry .
When using a cloudfoundry_service_plan_access resource to make a service plan public via the public field, deleting the resource does not revert the plan back to private.
Example:
resource "cloudfoundry_service_plan_access" "my-broker-my-offer-my-plan" {
plan = cloudfoundry_service_broker.my-broker.service_plans["my-offer/my-plan"]
public = true
}