Skip to content

[FEATURE](domain) Manage dynHost (dyndns) logins and records #999

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

Open
saimonn opened this issue May 23, 2025 · 0 comments · May be fixed by #1001
Open

[FEATURE](domain) Manage dynHost (dyndns) logins and records #999

saimonn opened this issue May 23, 2025 · 0 comments · May be fixed by #1001
Assignees

Comments

@saimonn
Copy link

saimonn commented May 23, 2025

Description

Current terraform provider does not manage dyndns (dynHost) resources. They can be created only from the web console.

The API endoints exists and could be used by the provider:

/domain/zone/{zoneName}/dynHost/login
/domain/zone/{zoneName}/dynHost/record

New Resource(s) and/or Data Source(s) that would be available:

  • ovh_domain_dynhost_login
  • ovh_domain_dynhost_record
    `

Potential Terraform Configuration

resource "ovh_domain_dynhost_login" "john" {
  zone      "example.org"
  subdomain "foo"
  password  "s3cr3t"
}

resource "ovh_domain_dynhost_record" "foo" {
  zone      "example.org"
  ip        "192.0.2.0"
  subdomain "foo"

  lifecycle {
    # this should be an implicit default in the provider
    ignore_changes [ ip ]
}
@saimonn saimonn changed the title [FEATURE] GET /domain/zone/{zoneName}/dynHost/login [FEATURE](domain) Manage dynHost (dyndns) logins and records May 23, 2025
@jrm-d jrm-d linked a pull request May 28, 2025 that will close this issue
11 tasks
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 a pull request may close this issue.

2 participants