terraform-provider-ovh icon indicating copy to clipboard operation
terraform-provider-ovh copied to clipboard

Terraform OVH provider

Results 103 terraform-provider-ovh issues
Sort by recently updated
recently updated
newest added

The auth url returned is pointing to the deprecated `2.0` version instead of the current `3`.

Hi, Right now, it's not possible to manage the role(s) of a given user created with ovh_cloud_user. Even more problematic, the actual default role is `Administrator` while one would expect...

It would be great if we could manage OVH's NAS-HA partitions with Terraform so that we can do something like that: ```hcl resource ovh_nasha_partition "foo" { service_name = "zpool-123456" partition_name...

new-resource

I don't see CDN related resources in the current resources documented at https://www.terraform.io/docs/providers/ovh/index.html As OVH CDN features seems similar to [cloudflare](https://www.terraform.io/docs/providers/cloudflare/index.html) (from reading the [fr public documentation](https://www.ovh.com/fr/cdn/faq.xml) and [API](https://eu.api.ovh.com/console/#/cdn/webstorage)) ,...

new-resource

Is it possible to implement "domain_zone" as regular read/write resource with possibility to change "name_servers" and "dnssec_supported" fields ?

new-resource

### Affected Resource - cloud_project_kube ### Expected Behavior The resource cloud_project_kube should have `host`, `cluster_ca_certificate` and `token` attributes to use the [kubernetes provider](https://registry.terraform.io/providers/hashicorp/kubernetes/latest) without have to create a local file....

From the testing I did, using "ovh_vrack_dedicated_server" through terraform did not work. I tried using the API calls directly without sucess, hence this commit: Removing this resource as the API...

### Terraform Version 1.2.8 ### Affected Resource(s) ovh_cloud_project_network_private ### Terraform Configuration Files ```hcl # Create Internal VLAN resource "ovh_cloud_project_network_private" "vlan_internal" { service_name = local.project_id name = "${var.ENV_PREFIX}-vlan-internal" vlan_id = var.VLAN_INTERNAL_ID...

Correct the service name according to the doc to use the var env in CI. **Exemple**: https://registry.terraform.io/providers/ovh/ovh/latest/docs/resources/cloud_project_kube#service_name

The API call [payWithRegisteredPaymentMean](https://github.com/ovh/terraform-provider-ovh/blob/v0.20.0/ovh/order.go#L339) is deprecated. An attempt to create a Public Cloud Project with `payWithRegisteredPaymentMean` returns `paymentMean not found` (404). https://api.us.ovhcloud.com/console/#/me/order/%7BorderId%7D/payWithRegisteredPaymentMean~POST ![image](https://user-images.githubusercontent.com/107317698/189307234-145e0518-01e9-4b08-b453-56c41fee788c.png) ## Code ``` ## Variables variable "project_description"...