Skip to content

Commit

Permalink
Revert (#142) Manage contact for registered domains (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
DXTimer authored Sep 7, 2023
1 parent 3aed243 commit 0cef57e
Show file tree
Hide file tree
Showing 22 changed files with 19 additions and 1,245 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,12 @@ jobs:
include:
- terraform: '1.0.*'
domain: 'dnsimple-1-0-terraform.bio'
registrant_change_domain: '6xjh9macv560eydj0frnloi0v1sgz1i1wcxsytjqt9pmo4y8vq21n2h8sqm4zu.eu'
- terraform: '1.1.*'
domain: 'dnsimple-1-1-terraform.bio'
registrant_change_domain: '6e640p3gc3yoh1szlntwhxvkk23f8jo8q7a64kuoghepq0q77iyg0nyqnc7nap.eu'
- terraform: '1.2.*'
domain: 'dnsimple-1-2-terraform.bio'
registrant_change_domain: '56gz94oqngp5xb82a04ugewpbv80hqj72kc8p3o3gd550esemiv2bzhjhoihs8.eu'
- terraform: '1.4.*'
domain: 'dnsimple-1-4-terraform.bio'
registrant_change_domain: '3177iktacmv2bg05lkvgsmpoysq5i1vniu6glxl6kq4picv5lvlj2blexwi6bw.eu'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
Expand All @@ -94,8 +90,6 @@ jobs:
DNSIMPLE_TOKEN: ${{ secrets.DNSIMPLE_TOKEN }}
DNSIMPLE_DOMAIN: ${{ matrix.domain }}
DNSIMPLE_CONTACT_ID: ${{ secrets.DNSIMPLE_CONTACT_ID }}
DNSIMPLE_REGISTRANT_CHANGE_DOMAIN: ${{ matrix.registrant_change_domain }}
DNSIMPLE_REGISTRANT_CHANGE_CONTACT_ID: 10854
run: go test -v -cover ./internal/... -timeout 15m
timeout-minutes: 10

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

FEATURES:

- **New Resource:** `dnsimple_registered_domain_contact` (dnsimple/terraform-provider-dnsimple#142)
- **New Data Source:** `dnsimple_registrant_change_check` (dnsimple/terraform-provider-dnsimple#142)
- **Updated Resource:** `dnsimple_registered_domain` now supports `transfer_lock_enabled` argument which you can use to manage the domain transfer lock state of your registered domains (dnsimple/terraform-provider-dnsimple#143)

## 1.1.2
Expand Down
59 changes: 0 additions & 59 deletions docs/data-sources/registrant_change_check.md

This file was deleted.

76 changes: 0 additions & 76 deletions docs/resources/registered_domain_contact.md

This file was deleted.

19 changes: 7 additions & 12 deletions internal/consts/provider.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
package consts

const (
BaseURLSandbox = "https://api.sandbox.dnsimple.com"
DomainStateRegistered = "registered"
DomainStateHosted = "hosted"
DomainStateNew = "new"
DomainStateFailed = "failed"
DomainStateCancelling = "cancelling"
DomainStateCancelled = "cancelled"
RegistrantChangeStateNew = "new"
RegistrantChangeStatePending = "pending"
RegistrantChangeStateCompleted = "completed"
RegistrantChangeStateCancelling = "cancelling"
RegistrantChangeStateCancelled = "cancelled"
BaseURLSandbox = "https://api.sandbox.dnsimple.com"
DomainStateRegistered = "registered"
DomainStateHosted = "hosted"
DomainStateNew = "new"
DomainStateFailed = "failed"
DomainStateCancelling = "cancelling"
DomainStateCancelled = "cancelled"
)
159 changes: 0 additions & 159 deletions internal/framework/datasources/registrant_change_check_data_source.go

This file was deleted.

Loading

0 comments on commit 0cef57e

Please sign in to comment.