Skip to content

Commit

Permalink
Remove deprecated marks. DNSv1 is legacy.
Browse files Browse the repository at this point in the history
  • Loading branch information
dchudik authored Feb 5, 2024
1 parent 08378f2 commit 59a8313
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions selectel/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func Provider() *schema.Provider {
},
},
DataSourcesMap: map[string]*schema.Resource{
"selectel_domains_domain_v1": dataSourceDomainsDomainV1(), // DEPRECATED
"selectel_domains_domain_v1": dataSourceDomainsDomainV1(),
"selectel_domains_zone_v2": dataSourceDomainsZoneV2(),
"selectel_domains_rrset_v2": dataSourceDomainsRrsetV2(),
"selectel_dbaas_datastore_type_v1": dataSourceDBaaSDatastoreTypeV1(),
Expand All @@ -125,8 +125,8 @@ func Provider() *schema.Provider {
"selectel_vpc_crossregion_subnet_v2": resourceVPCCrossRegionSubnetV2(), // DEPRECATED
"selectel_mks_cluster_v1": resourceMKSClusterV1(),
"selectel_mks_nodegroup_v1": resourceMKSNodegroupV1(),
"selectel_domains_domain_v1": resourceDomainsDomainV1(), // DEPRECATED
"selectel_domains_record_v1": resourceDomainsRecordV1(), // DEPRECATED
"selectel_domains_domain_v1": resourceDomainsDomainV1(),
"selectel_domains_record_v1": resourceDomainsRecordV1(),
"selectel_domains_zone_v2": resourceDomainsZoneV2(),
"selectel_domains_rrset_v2": resourceDomainsRrsetV2(),
"selectel_dbaas_datastore_v1": resourceDBaaSDatastoreV1(), // DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/domains_domain_v1.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# selectel\_domains\_domain_v1

~> **Note:** This is deprecated datasource. Using the `selectel_domains_zone_v2` datasource. They utilize different API and created zones live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.
~> **Note:** This is legacy datasource. Using the `selectel_domains_zone_v2` datasource. They utilize different API and created zones live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.

Provides an ID of a domain in DNS Hosting. For more information about domains in DNS Hosting, see the [official Selectel documentation](https://docs.selectel.ru/networks-services/dns/zones/).

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/domains_domain_v1.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# selectel\_domains\_domain\_v1

~> **Note:** This is deprecated resource. Using the `selectel_domains_zone_v2` resource. They utilize different API and created zones live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.
~> **Note:** This is legacy resource. Using the `selectel_domains_zone_v2` resource. They utilize different API and created zones live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.

Creates and manages a domain in DNS Hosting using public API v1. For more information about domains, see the [official Selectel documentation](https://docs.selectel.ru/networks-services/dns/zones/).

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/domains_record_v1.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# selectel\_domains\_record\_v1

~> **Note:** This is deprecated resource. Using the `selectel_domains_rrset_v2` resource. They are not compatible. They utilize different API and created records live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.
~> **Note:** This is legacy resource. Using the `selectel_domains_rrset_v2` resource. They are not compatible. They utilize different API and created records live on different authoritative servers. Zone created in v2 API is entirely new zone, and not available via v1 api and vice versa.

Creates and manages a record in DNS Hosting using public API v1. For more information about records, see the [official Selectel documentation](https://docs.selectel.ru/networks-services/dns/records/).

Expand Down

0 comments on commit 59a8313

Please sign in to comment.