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
Currently we can specify an application -> service binding when creating an app, but there is no explicit application binding resource; it's implicit.
However this means Terraform has no ability to manage bindings between apps and service instances if either one is managed outside of Terraform (or via another Terraform run).
I propose the creation of a new resource cloud_foundry_app_binding which does exactly the same thing as running bind-service, including the ability to specify bind-time parameters.
The text was updated successfully, but these errors were encountered:
Hi @mogul, If I understand correctly, you could potentially simplify the process by using a data block to read the ID of the service instance and binding it to the application. This might make things easier for you.
In the case of managed app, and unmanaged service:
In the case of unmanaged app and managed service instance. Clarification: cloudfoundry_service_binding does not exist in this repository yet, which is what the enhancement is asking for. cloudfoundry_service_binding only exists in my current fork of this repository at the moment.
Currently we can specify an application -> service binding when creating an app, but there is no explicit application binding resource; it's implicit.
However this means Terraform has no ability to manage bindings between apps and service instances if either one is managed outside of Terraform (or via another Terraform run).
I propose the creation of a new resource
cloud_foundry_app_binding
which does exactly the same thing as runningbind-service
, including the ability to specify bind-time parameters.The text was updated successfully, but these errors were encountered: