Skip to content

Commit c64dbcb

Browse files
author
Arthur Amstutz
committed
Changes for v2.0.0 new major + CHANGELOG
1 parent 25d30b7 commit c64dbcb

File tree

255 files changed

+328
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+328
-274
lines changed

CHANGELOG.md

+56
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
## 2.0.0 (March 4, 2025)
2+
3+
🎉 Features:
4+
5+
* New resource: `ovh_domain_name` ([#837](https://github.com/ovh/terraform-provider-ovh/pull/837))
6+
* New resource: `ovh_domain_name_servers` ([#870](https://github.com/ovh/terraform-provider-ovh/pull/870))
7+
* New resource: `ovh_domain_ds_records` ([#870](https://github.com/ovh/terraform-provider-ovh/pull/870))
8+
* New resource: `ovh_cloud_project_storage` ([#834](https://github.com/ovh/terraform-provider-ovh/pull/834), [#858](https://github.com/ovh/terraform-provider-ovh/pull/858))
9+
* New resource: `ovh_cloud_project_loadbalancer` ([#855](https://github.com/ovh/terraform-provider-ovh/pull/855))
10+
* New resource: `ovh_cloud_project_rancher` ([#872](https://github.com/ovh/terraform-provider-ovh/pull/872))
11+
* New resource: `ovh_dbaas_logs_role` ([#859](https://github.com/ovh/terraform-provider-ovh/pull/859))
12+
* New resource: `ovh_dbaas_logs_role_permission_stream` ([#859](https://github.com/ovh/terraform-provider-ovh/pull/859))
13+
* New resource: `ovh_vrack_ipv6` ([#838](https://github.com/ovh/terraform-provider-ovh/pull/838))
14+
* New resource: `ovh_vrack_vrackservices` ([#839](https://github.com/ovh/terraform-provider-ovh/pull/839))
15+
* New resource: `ovh_vrack_ovhcloudconnect` ([#875](https://github.com/ovh/terraform-provider-ovh/pull/875))
16+
* New resource: `ovh_dedicated_server_reinstall_task` ([#835](https://github.com/ovh/terraform-provider-ovh/pull/835))
17+
18+
* New datasource: `ovh_cloud_project_flavors` ([#865](https://github.com/ovh/terraform-provider-ovh/pull/865))
19+
* New datasource: `ovh_cloud_project_loadbalancer_flavors` ([#866](https://github.com/ovh/terraform-provider-ovh/pull/866))
20+
* New datasource: `ovh_cloud_project_storage` ([#867](https://github.com/ovh/terraform-provider-ovh/pull/867))
21+
* New datasource: `ovh_cloud_project_storages` ([#867](https://github.com/ovh/terraform-provider-ovh/pull/867))
22+
* New datasource: `ovh_cloud_project_rancher` ([#876](https://github.com/ovh/terraform-provider-ovh/pull/876))
23+
* New datasource: `ovh_cloud_project_rancher_version` ([#874](https://github.com/ovh/terraform-provider-ovh/pull/874))
24+
* New datasource: `ovh_cloud_project_rancher_plan` ([#874](https://github.com/ovh/terraform-provider-ovh/pull/874))
25+
* New datasource: `ovh_ovhcloud_connect` ([#871](https://github.com/ovh/terraform-provider-ovh/pull/871))
26+
* New datasource: `ovh_ovhcloud_connects` ([#871](https://github.com/ovh/terraform-provider-ovh/pull/871))
27+
28+
💪 Improvements:
29+
30+
* `r/ovh_cloud_project_instance`: Add `availability_zone` field ([#863](https://github.com/ovh/terraform-provider-ovh/pull/863))
31+
* `d/ovh_cloud_project_instance`: Add `availability_zone` field ([#863](https://github.com/ovh/terraform-provider-ovh/pull/863))
32+
* `d/ovh_cloud_project_instances`: Add `availability_zone` field ([#863](https://github.com/ovh/terraform-provider-ovh/pull/863))
33+
34+
🐜 Bug fixes:
35+
36+
* `r/ovh_cloud_project_instance`: Correctly handle SSH keys ([#861](https://github.com/ovh/terraform-provider-ovh/pull/861))
37+
* `r/ovh_cloud_project_kube`: Increase update timeout ([#868](https://github.com/ovh/terraform-provider-ovh/pull/868))
38+
* `r/ovh_ip_move`: Fix import and add documentation ([#864](https://github.com/ovh/terraform-provider-ovh/pull/864))
39+
40+
🧨 Breaking changes:
41+
42+
__In the context of IAM integration across all OVHcloud products, we are deprecating the routes in the API section `/me` that are used to store/retrieve information about dedicated server installation templates and partition schemes.
43+
As a result, the resources `ovh_me_installation_template`, `ovh_me_installation_template_partition_scheme`, `ovh_me_installation_template_partition_scheme_hardware_raid` and `ovh_me_installation_template_partition_scheme_partition` are removed in favor of the new resource `ovh_dedicated_server_reinstall_task` and new parameters in resource `ovh_dedicated_server`.
44+
This will simplify the reinstallation and OS change on dedicated servers, especially when partitioning needs to be customized.__
45+
46+
* `r/ovh_dedicated_server`: The fields used to reinstall a dedicated server have been modified do to API changes (the call [POST /dedicated/server/{serviceName}/install/start](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/install/start) will be replaced by [POST /dedicated/server/{serviceName}/reinstall](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall)). In this context, the following fields have been removed: `user_metadata`, `template_name`, `partition_scheme_name`, `details`, and the following fields are replacing them: `os`, `storage`, `customizations`, and `properties` ([#835](https://github.com/ovh/terraform-provider-ovh/pull/835))
47+
* Resource `ovh_dedicated_server_install_task` has been replaced by the new resource `ovh_dedicated_server_reinstall_task` ([#835](https://github.com/ovh/terraform-provider-ovh/pull/835))
48+
* Resources removed: `ovh_me_installation_template`, `ovh_me_installation_template_partition_scheme`, `ovh_me_installation_template_partition_scheme_hardware_raid`, `ovh_me_installation_template_partition_scheme_partition` ([#835](https://github.com/ovh/terraform-provider-ovh/pull/835))
49+
50+
📚 Documentation:
51+
52+
* Reorganization of the documentation ([#840](https://github.com/ovh/terraform-provider-ovh/pull/840), [#873](https://github.com/ovh/terraform-provider-ovh/pull/873))
53+
* `r/ovh_vps`: Fix typo in documentation ([#836](https://github.com/ovh/terraform-provider-ovh/pull/836))
54+
55+
❤️ Thanks for your contributions ❤️
56+
157
## 1.6.0 (February 6, 2025)
258

359
⚙️ General:

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ovh/terraform-provider-ovh
1+
module github.com/ovh/terraform-provider-ovh/v2
22

33
require (
44
github.com/google/go-cmp v0.6.0
@@ -71,5 +71,3 @@ require (
7171
go 1.22.0
7272

7373
toolchain go1.22.8
74-
75-
retract v0.36.0 // OVH_ENDPOINT environment variable prevent a correct usage of the terraform provider

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashicorp/terraform-plugin-go/tfprotov6/tf6server"
1111
"github.com/hashicorp/terraform-plugin-mux/tf5to6server"
1212
"github.com/hashicorp/terraform-plugin-mux/tf6muxserver"
13-
"github.com/ovh/terraform-provider-ovh/ovh"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh"
1414
)
1515

1616
func main() {

ovh/data_cloud_project_capabilities_containerregistry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sort"
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
10-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
10+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1111
)
1212

1313
func dataSourceCloudProjectCapabilitiesContainerRegistry() *schema.Resource {

ovh/data_cloud_project_containerregistries.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sort"
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
10-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
10+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1111
)
1212

1313
func dataSourceCloudProjectContainerRegistries() *schema.Resource {

ovh/data_cloud_project_containerregistry_users.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sort"
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
10-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
10+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1111
)
1212

1313
func dataSourceCloudProjectContainerRegistryUsers() *schema.Resource {

ovh/data_cloud_project_database_capabilities.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseCapabilities() *schema.Resource {

ovh/data_cloud_project_database_certificates.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseCertificates() *schema.Resource {

ovh/data_cloud_project_database_database.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseDatabase() *schema.Resource {

ovh/data_cloud_project_database_databases.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseDatabases() *schema.Resource {

ovh/data_cloud_project_database_integration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseIntegration() *schema.Resource {

ovh/data_cloud_project_database_integrations.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1313
)
1414

1515
func dataSourceCloudProjectDatabaseIntegrations() *schema.Resource {

ovh/data_cloud_project_database_kafka_acl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseKafkaACL() *schema.Resource {

ovh/data_cloud_project_database_kafka_acls.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseKafkaAcls() *schema.Resource {

ovh/data_cloud_project_database_kafka_schemaregistryacl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseKafkaSchemaRegistryAcl() *schema.Resource {

ovh/data_cloud_project_database_kafka_schemaregistryacls.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseKafkaSchemaRegistryAcls() *schema.Resource {

ovh/data_cloud_project_database_kafka_topic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseKafkaTopic() *schema.Resource {

ovh/data_cloud_project_database_kafka_topics.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseKafkaTopics() *schema.Resource {

ovh/data_cloud_project_database_kafka_user_access.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseKafkaUserAccess() *schema.Resource {

ovh/data_cloud_project_database_log_subscription.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseLogSubscription() *schema.Resource {

ovh/data_cloud_project_database_log_subscriptions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1313
)
1414

1515
func dataSourceCloudProjectDatabaseLogSubscriptions() *schema.Resource {

ovh/data_cloud_project_database_m3db_namespaces.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1313
)
1414

1515
func dataSourceCloudProjectDatabaseM3dbNamespaces() *schema.Resource {

ovh/data_cloud_project_database_mongodb_prometheus.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseMongodbPrometheus() *schema.Resource {

ovh/data_cloud_project_database_opensearch_pattern.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseOpensearchPattern() *schema.Resource {

ovh/data_cloud_project_database_opensearch_patterns.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabaseOpensearchPatterns() *schema.Resource {

ovh/data_cloud_project_database_postgresql_connection_pools.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
13-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
13+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1414
)
1515

1616
func dataSourceCloudProjectDatabasePostgresqlConnectionPools() *schema.Resource {

ovh/data_cloud_project_database_prometheus.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabasePrometheus() *schema.Resource {

ovh/data_cloud_project_database_user.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
11+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers"
1212
)
1313

1414
func dataSourceCloudProjectDatabaseUser() *schema.Resource {

ovh/data_cloud_project_database_users.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1313
)
1414

1515
func dataSourceCloudProjectDatabaseUsers() *schema.Resource {

ovh/data_cloud_project_databases.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
1111
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
12-
"github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode"
12+
"github.com/ovh/terraform-provider-ovh/v2/ovh/helpers/hashcode"
1313
)
1414

1515
func dataSourceCloudProjectDatabases() *schema.Resource {

ovh/data_cloud_project_flavors.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/hashicorp/terraform-plugin-framework/attr"
99
"github.com/hashicorp/terraform-plugin-framework/datasource"
1010
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
11-
ovhtypes "github.com/ovh/terraform-provider-ovh/ovh/types"
11+
ovhtypes "github.com/ovh/terraform-provider-ovh/v2/ovh/types"
1212
)
1313

1414
var _ datasource.DataSourceWithConfigure = (*cloudProjectFlavorsDataSource)(nil)

ovh/data_cloud_project_flavors_gen.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ovh/data_cloud_project_floatingips.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/hashicorp/terraform-plugin-framework/attr"
99
"github.com/hashicorp/terraform-plugin-framework/datasource"
1010
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
11-
ovhtypes "github.com/ovh/terraform-provider-ovh/ovh/types"
11+
ovhtypes "github.com/ovh/terraform-provider-ovh/v2/ovh/types"
1212
)
1313

1414
var _ datasource.DataSourceWithConfigure = (*cloudProjectFloatingipsDataSource)(nil)

ovh/data_cloud_project_floatingips_gen.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ovh/data_cloud_project_gateway_interface_gen.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ovh/data_cloud_project_gen.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)