-
Notifications
You must be signed in to change notification settings - Fork 18
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
[FEATURE] Add destination resource #931
Comments
Thanks for the feature request. We evaluate it and update the issue accordingly. Community NoteVoting for Prioritization
Volunteering to Work on This Issue
|
@MarcusNotheis we are working on providing a dedicated resource for destinations as proposed in you feature request. As this is not only a topic of the Terraform provider, some pre-work needs to be done before offering a new resource in the provider. As of now we cannot give an ETA for the resource, however we ca already say that this won't land in the the first half of 2025. Concerning the current options you have: as you rightfully stated you can use the service instance resource for Cloud Foundry or the service instance resource for SAP BTP. However, please be aware of the restrictions that these resources for service instances with dedicated (= JSON encoded) parameters have concerning drift detection and import. |
Hey @lechnerc77, BR, |
@CoKueb I will ping you. However the functionality must be added first the BTP CLI before we can use it in the provider |
Hello, it is fairly easy to provide destination definitions, including the with the certificates, during a destination resource creation. All by the book. You have can have subaccount and/or instance level destinations as well. |
@ptesny : I agree that the provisioning via service instances works. However, this is not the preferred way from the perspective of destinations and comes with some short comings (no import possible, limited read capability of parameters) that would be mitigated by the dedicated resource (i.e. by the corresponding API) |
In addition to what @lechnerc77 said, it's also not possible to remove destinations which are not longer needed with the approach using |
Are you sure ? If it were not possible this well-documented init_data approach would have been very much useless ? |
Indeed. However, on a side note, I have conceptualised and developed the following blueprint: And, very much arguably, the biggest shortcoming I wanted to address with the above blueprint is the lack of an intrinsic BTP CLI command to assist in creation of destinations from service bindings. With this solved I am also providing a destination-service bootstrap destinations definitions - against a dest service binding(s). Subsequently, that makes fairly easy to manage destinations real estate via the destination service REST APIs, including part of a tf configuration |
What area do you want to see improved?
terraform provider
Is your feature request related to a problem? Please describe.
We would like to manage our destinations in an instance of the BTP Destination Service via terraform. Therefore, we would like to create, update and delete destinations on both subaccount and instance level.
Describe the solution you would like
Manage destinations via terraform with a
btp_destination
resource:Maybe it would also make sense to model each authentication type as a dedicated resource to make sure required parameters are passed during
terraform plan
.Based on the instance id and the service key, the BTP provider could read the required credentials and create/update/delete the destination via API calls to the destination service.
Describe alternatives you have considered
We might use the cloudfoundry_service_instance from the
sap/cloudfoundry
provider and pass all destinations as init_data, but this JSON would become huge when maintaining lots of different destinations.Additional context
No response
The text was updated successfully, but these errors were encountered: