Skip to content
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

fix(hosting_privatedatabase_whitelist): Add default netmask when user do not define it #703

Merged
merged 1 commit into from
Aug 20, 2024

Conversation

wiseflat
Copy link

@wiseflat wiseflat commented Aug 7, 2024

Description

OVH API v6 authorize to create a whitelist without a nemask but will add it if it's undefined.
Then, when you execute a plan/apply it throws an error

module.whitelist[0].ovh_hosting_privatedatabase_whitelist.whitelist: Creating...
╷
│ Error: calling /hosting/privateDatabase/om55704-038/whitelist/5.196.197.1:
│        OVHcloud API error (status code 400): Client::BadRequest: "[ip] Given data (w.x.y.z) is not valid for type ipv4Block" (X-OVH-Query-Id: EU.ext-xxxx)
│ 
│   with module.whitelist[0].ovh_hosting_privatedatabase_whitelist.whitelist,
│   on ../../modules/whitelist/main.tf line 1, in resource "ovh_hosting_privatedatabase_whitelist" "whitelist":
│    1: resource "ovh_hosting_privatedatabase_whitelist" "whitelist" {
│ 

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • Improvement (improve existing resource(s) and datasource(s))

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

  • Test A: make testacc TESTARGS="-run TestAccDataSourceHostingPrivateDatabaseWhitelist_basic"
  • Test B: make testacc TESTARGS="-run TestAccHostingPrivateDatabaseWhitelist_basic"
$ export OVH_HOSTING_PRIVATEDATABASE_WHITELIST_IP_TEST=w.x.y.z
$ make testacc TESTARGS="-run TestAccDataSourceHostingPrivateDatabaseWhitelist_basic"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test $(go list ./... |grep -v 'vendor') -v -run TestAccDataSourceHostingPrivateDatabaseWhitelist_basic -timeout 600m -p 10
?       github.com/ovh/terraform-provider-ovh   [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/helpers       [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/types [no test files]
=== RUN   TestAccDataSourceHostingPrivateDatabaseWhitelist_basic
--- PASS: TestAccDataSourceHostingPrivateDatabaseWhitelist_basic (182.06s)
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh       182.071s
testing: warning: no tests to run
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode      (cached) [no tests to run]
$ export OVH_HOSTING_PRIVATEDATABASE_WHITELIST_IP_TEST=w.x.y.z/32
$ make testacc TESTARGS="-run TestAccDataSourceHostingPrivateDatabaseWhitelist_basic"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test $(go list ./... |grep -v 'vendor') -v -run TestAccDataSourceHostingPrivateDatabaseWhitelist_basic -timeout 600m -p 10
?       github.com/ovh/terraform-provider-ovh   [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/helpers       [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/types [no test files]
=== RUN   TestAccDataSourceHostingPrivateDatabaseWhitelist_basic
--- PASS: TestAccDataSourceHostingPrivateDatabaseWhitelist_basic (182.06s)
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh       182.071s
testing: warning: no tests to run
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode      (cached) [no tests to run]
$ export OVH_HOSTING_PRIVATEDATABASE_WHITELIST_IP_TEST=w.x.y.z/32
$ make testacc TESTARGS="-run TestAccHostingPrivateDatabaseWhitelist_basic"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test $(go list ./... |grep -v 'vendor') -v -run TestAccHostingPrivateDatabaseWhitelist_basic -timeout 600m -p 10
?       github.com/ovh/terraform-provider-ovh   [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/helpers       [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/types [no test files]
=== RUN   TestAccHostingPrivateDatabaseWhitelist_basic
--- PASS: TestAccHostingPrivateDatabaseWhitelist_basic (9.01s)
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh       9.029s
testing: warning: no tests to run
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode      (cached) [no tests to run]
$ export OVH_HOSTING_PRIVATEDATABASE_WHITELIST_IP_TEST=w.x.y.z
$ make testacc TESTARGS="-run TestAccHostingPrivateDatabaseWhitelist_basic"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test $(go list ./... |grep -v 'vendor') -v -run TestAccHostingPrivateDatabaseWhitelist_basic -timeout 600m -p 10
?       github.com/ovh/terraform-provider-ovh   [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/helpers       [no test files]
?       github.com/ovh/terraform-provider-ovh/ovh/types [no test files]
=== RUN   TestAccHostingPrivateDatabaseWhitelist_basic
--- PASS: TestAccHostingPrivateDatabaseWhitelist_basic (9.06s)
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh       9.070s
testing: warning: no tests to run
PASS
ok      github.com/ovh/terraform-provider-ovh/ovh/helpers/hashcode      (cached) [no tests to run]

Test Configuration:

  • Terraform version: terraform version: Terraform v1.9.3

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

@amstuta amstuta merged commit 949f40a into ovh:master Aug 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants