ovh / terraform-provider-ovh

Terraform OVH provider
https://registry.terraform.io/providers/ovh/ovh/latest/docs
Mozilla Public License 2.0
182 stars 136 forks source link

Update dedicated server (and (me_)_installation_template ) #639

Closed bigbigbang closed 4 months ago

bigbigbang commented 4 months ago

Description

Update of dedicated_me_installation_template

Update of type_installation_template

Add dedicated_installation_template data source

Remove resource me_ssh_key(s)

Type of change

Please delete options that are not relevant.

How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration

make testacc TESTARGS="-run TestAccInstallationTemplateDataSource_basic"

Test Configuration:

data "ovh_dedicated_installation_template" "ovhtemplate" { template_name = "win2019-dc_64" }

output "template" { value = data.ovh_dedicated_installation_template.ovhtemplate }



# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings or issues
- [ ] I have added acceptance tests that prove my fix is effective or that my feature works
- [ ] New and existing acceptance tests pass locally with my changes
- [ ] I ran succesfully `go mod vendor` if I added or modify `go.mod` file