diff --git a/.gitignore b/.gitignore index 6e92c2a..37fbf2b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ decort/vendor/ examples/ url_scrapping/ terraform-provider-decort* -.vscode/ \ No newline at end of file +.vscode/ diff --git a/README.md b/README.md index 3f63d6c..ca110e0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Terraform provider для платформы Digital Energy Cloud Orchestration - Режим пользователя, - Режим администратора. Для переключения между режимами используйте флаг DECORT_ADMIN_MODE. - Вики проекта: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki + Вики проекта: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki ## Возможности провайдера @@ -40,7 +40,7 @@ Terraform provider для платформы Digital Energy Cloud Orchestration - Работа с locations, - Работа с load balancer. -Вики проекта: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Вики проекта: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki ## Начало @@ -158,7 +158,7 @@ terraform init Примеры работы можно найти: -- На вики проекта: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +- На вики проекта: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki - В папке `samples` Схемы к terraform'у доступны: diff --git a/README_EN.md b/README_EN.md index 5b473dd..f6c342a 100644 --- a/README_EN.md +++ b/README_EN.md @@ -19,7 +19,7 @@ The provider support two working modes: - User mode, - Administator mode. Use flag DECORT_ADMIN_MODE for swithcing beetwen modes. - See user guide at https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki + See user guide at https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki ## Features @@ -42,7 +42,7 @@ The provider support two working modes: This provider supports Import operations on pre-existing resources. -See user guide at https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +See user guide at https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki ## Get Started @@ -158,7 +158,7 @@ More details about the provider's building process: https://learn.hashicorp.com/ ## Examples and Samples -- Examples: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +- Examples: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki - Samples: see in repository `samples` Terraform schemas in: diff --git a/cmd/decort/main.go b/cmd/decort/main.go index faa55d2..738370f 100644 --- a/cmd/decort/main.go +++ b/cmd/decort/main.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package main @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/plugin" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/provider" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/provider" ) //go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs diff --git a/go.mod b/go.mod index 3ae0af5..9bd83ae 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module repos.digitalenergy.online/BASIS/terraform-provider-decort +module repository.basistech.ru/BASIS/terraform-provider-decort go 1.18 diff --git a/internal/dc/warnings.go b/internal/dc/warnings.go index e7fbc78..1aac880 100644 --- a/internal/dc/warnings.go +++ b/internal/dc/warnings.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ //Diagnostics Collector diff --git a/internal/location/location.go b/internal/location/location.go index f21e750..eedd3b3 100644 --- a/internal/location/location.go +++ b/internal/location/location.go @@ -27,7 +27,7 @@ import ( "net/url" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) var DefaultGridID int diff --git a/internal/provider/cloudapi/data_sources_map.go b/internal/provider/cloudapi/data_sources_map.go index 5afd067..f1a9590 100644 --- a/internal/provider/cloudapi/data_sources_map.go +++ b/internal/provider/cloudapi/data_sources_map.go @@ -22,18 +22,18 @@ package cloudapi import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/account" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/bservice" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/disks" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/extnet" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/image" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/k8s" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/lb" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/locations" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/rg" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/snapshot" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/vins" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/account" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/bservice" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/disks" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/extnet" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/image" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/k8s" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/lb" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/locations" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/rg" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/snapshot" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/vins" ) func NewDataSourcesMap() map[string]*schema.Resource { diff --git a/internal/provider/cloudapi/resource_map.go b/internal/provider/cloudapi/resource_map.go index 5327314..bc65c4b 100644 --- a/internal/provider/cloudapi/resource_map.go +++ b/internal/provider/cloudapi/resource_map.go @@ -22,17 +22,17 @@ package cloudapi import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/account" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/bservice" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/disks" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/image" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/k8s" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/lb" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/pfw" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/rg" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/snapshot" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/vins" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/account" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/bservice" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/disks" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/image" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/k8s" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/lb" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/pfw" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/rg" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/snapshot" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/vins" ) func NewRersourcesMap() map[string]*schema.Resource { diff --git a/internal/provider/cloudbroker/data_sources_map.go b/internal/provider/cloudbroker/data_sources_map.go index 79cd2db..362a05e 100644 --- a/internal/provider/cloudbroker/data_sources_map.go +++ b/internal/provider/cloudbroker/data_sources_map.go @@ -22,14 +22,14 @@ package cloudbroker import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/account" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/disks" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/grid" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/image" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/pcidevice" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/rg" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/sep" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/vgpu" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/account" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/disks" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/grid" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/image" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/pcidevice" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/rg" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/sep" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/vgpu" ) func NewDataSourcesMap() map[string]*schema.Resource { diff --git a/internal/provider/cloudbroker/resources_map.go b/internal/provider/cloudbroker/resources_map.go index e452228..04229c0 100644 --- a/internal/provider/cloudbroker/resources_map.go +++ b/internal/provider/cloudbroker/resources_map.go @@ -22,17 +22,17 @@ package cloudbroker import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/account" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/disks" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/image" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/k8s" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/kvmvm" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/pcidevice" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/pfw" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/rg" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/sep" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/snapshot" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudbroker/vins" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/account" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/disks" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/image" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/k8s" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/pcidevice" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/pfw" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/rg" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/sep" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/snapshot" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudbroker/vins" ) func NewRersourcesMap() map[string]*schema.Resource { diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 9281da0..ac58577 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -28,9 +28,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" "golang.org/x/net/context" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/location" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/statefuncs" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/location" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" ) func Provider() *schema.Provider { diff --git a/internal/provider/select_schema.go b/internal/provider/select_schema.go index 9bd59a9..4538110 100644 --- a/internal/provider/select_schema.go +++ b/internal/provider/select_schema.go @@ -25,8 +25,8 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - ca "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/provider/cloudapi" - cb "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/provider/cloudbroker" + ca "repository.basistech.ru/BASIS/terraform-provider-decort/internal/provider/cloudapi" + cb "repository.basistech.ru/BASIS/terraform-provider-decort/internal/provider/cloudbroker" ) func selectSchema(isDatasource bool) map[string]*schema.Resource { diff --git a/internal/service/cloudapi/account/api.go b/internal/service/cloudapi/account/api.go index 6b02c87..1d89972 100644 --- a/internal/service/cloudapi/account/api.go +++ b/internal/service/cloudapi/account/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudapi/account/data_source_account.go b/internal/service/cloudapi/account/data_source_account.go index dd850d0..3da366b 100644 --- a/internal/service/cloudapi/account/data_source_account.go +++ b/internal/service/cloudapi/account/data_source_account.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,8 +38,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func dataSourceAccountRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/data_source_account_audits_list.go b/internal/service/cloudapi/account/data_source_account_audits_list.go index 6bdfab3..cf8fb76 100644 --- a/internal/service/cloudapi/account/data_source_account_audits_list.go +++ b/internal/service/cloudapi/account/data_source_account_audits_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountAuditsList(aal AccountAuditsList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_computes_list.go b/internal/service/cloudapi/account/data_source_account_computes_list.go index fc49083..bbd9801 100644 --- a/internal/service/cloudapi/account/data_source_account_computes_list.go +++ b/internal/service/cloudapi/account/data_source_account_computes_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountComputesList(acl AccountComputesList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_consumed_units.go b/internal/service/cloudapi/account/data_source_account_consumed_units.go index 1997e9c..93b3513 100644 --- a/internal/service/cloudapi/account/data_source_account_consumed_units.go +++ b/internal/service/cloudapi/account/data_source_account_consumed_units.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceAccountConsumedUnitsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/data_source_account_consumed_units_by_type.go b/internal/service/cloudapi/account/data_source_account_consumed_units_by_type.go index dda1150..906eb83 100644 --- a/internal/service/cloudapi/account/data_source_account_consumed_units_by_type.go +++ b/internal/service/cloudapi/account/data_source_account_consumed_units_by_type.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceAccountConsumedUnitsByTypeRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/data_source_account_deleted_list.go b/internal/service/cloudapi/account/data_source_account_deleted_list.go index e8cd6ad..ec02d9b 100644 --- a/internal/service/cloudapi/account/data_source_account_deleted_list.go +++ b/internal/service/cloudapi/account/data_source_account_deleted_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceAccountDeletedListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/data_source_account_disks_list.go b/internal/service/cloudapi/account/data_source_account_disks_list.go index 3769856..8688f30 100644 --- a/internal/service/cloudapi/account/data_source_account_disks_list.go +++ b/internal/service/cloudapi/account/data_source_account_disks_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountDisksList(adl AccountDisksList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_flipgroups_list.go b/internal/service/cloudapi/account/data_source_account_flipgroups_list.go index deb388c..9ea55d5 100644 --- a/internal/service/cloudapi/account/data_source_account_flipgroups_list.go +++ b/internal/service/cloudapi/account/data_source_account_flipgroups_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountFlipGroupsList(afgl AccountFlipGroupsList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_list.go b/internal/service/cloudapi/account/data_source_account_list.go index bc07c22..2139542 100644 --- a/internal/service/cloudapi/account/data_source_account_list.go +++ b/internal/service/cloudapi/account/data_source_account_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountList(al AccountCloudApiList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_reserved_units.go b/internal/service/cloudapi/account/data_source_account_reserved_units.go index d9d5ec6..6fbe2a3 100644 --- a/internal/service/cloudapi/account/data_source_account_reserved_units.go +++ b/internal/service/cloudapi/account/data_source_account_reserved_units.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceAccountReservedUnitsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/data_source_account_rg_list.go b/internal/service/cloudapi/account/data_source_account_rg_list.go index 1365b8d..ec80816 100644 --- a/internal/service/cloudapi/account/data_source_account_rg_list.go +++ b/internal/service/cloudapi/account/data_source_account_rg_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountRGList(argl AccountRGList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_templates_list.go b/internal/service/cloudapi/account/data_source_account_templates_list.go index 131c180..529cc29 100644 --- a/internal/service/cloudapi/account/data_source_account_templates_list.go +++ b/internal/service/cloudapi/account/data_source_account_templates_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountTemplatesList(atl AccountTemplatesList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/data_source_account_vins_list.go b/internal/service/cloudapi/account/data_source_account_vins_list.go index 00146f0..3367249 100644 --- a/internal/service/cloudapi/account/data_source_account_vins_list.go +++ b/internal/service/cloudapi/account/data_source_account_vins_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountVinsList(avl AccountVinsList) []map[string]interface{} { diff --git a/internal/service/cloudapi/account/models.go b/internal/service/cloudapi/account/models.go index 3e1b249..d05b5a7 100644 --- a/internal/service/cloudapi/account/models.go +++ b/internal/service/cloudapi/account/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudapi/account/resource_account.go b/internal/service/cloudapi/account/resource_account.go index a02ee6e..b3306ad 100644 --- a/internal/service/cloudapi/account/resource_account.go +++ b/internal/service/cloudapi/account/resource_account.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -41,9 +41,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func resourceAccountCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/account/utility_account.go b/internal/service/cloudapi/account/utility_account.go index 7709bb7..a3832b2 100644 --- a/internal/service/cloudapi/account/utility_account.go +++ b/internal/service/cloudapi/account/utility_account.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_audits_list.go b/internal/service/cloudapi/account/utility_account_audits_list.go index ac113ad..9ec0a87 100644 --- a/internal/service/cloudapi/account/utility_account_audits_list.go +++ b/internal/service/cloudapi/account/utility_account_audits_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_computes_list.go b/internal/service/cloudapi/account/utility_account_computes_list.go index 2c5c9e5..0296d2f 100644 --- a/internal/service/cloudapi/account/utility_account_computes_list.go +++ b/internal/service/cloudapi/account/utility_account_computes_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_consumed_units.go b/internal/service/cloudapi/account/utility_account_consumed_units.go index ac0cac0..1a35373 100644 --- a/internal/service/cloudapi/account/utility_account_consumed_units.go +++ b/internal/service/cloudapi/account/utility_account_consumed_units.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_consumed_units_by_type.go b/internal/service/cloudapi/account/utility_account_consumed_units_by_type.go index c8a17f6..57b5d70 100644 --- a/internal/service/cloudapi/account/utility_account_consumed_units_by_type.go +++ b/internal/service/cloudapi/account/utility_account_consumed_units_by_type.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strings" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_deleted_list.go b/internal/service/cloudapi/account/utility_account_deleted_list.go index 7ea679a..287075f 100644 --- a/internal/service/cloudapi/account/utility_account_deleted_list.go +++ b/internal/service/cloudapi/account/utility_account_deleted_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_disks_list.go b/internal/service/cloudapi/account/utility_account_disks_list.go index b836668..57638a6 100644 --- a/internal/service/cloudapi/account/utility_account_disks_list.go +++ b/internal/service/cloudapi/account/utility_account_disks_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_flip_groups.go b/internal/service/cloudapi/account/utility_account_flip_groups.go index b4f7083..15f5924 100644 --- a/internal/service/cloudapi/account/utility_account_flip_groups.go +++ b/internal/service/cloudapi/account/utility_account_flip_groups.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_list.go b/internal/service/cloudapi/account/utility_account_list.go index bba5818..7ef83d8 100644 --- a/internal/service/cloudapi/account/utility_account_list.go +++ b/internal/service/cloudapi/account/utility_account_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_reserved_units.go b/internal/service/cloudapi/account/utility_account_reserved_units.go index 8bfecfc..d18f147 100644 --- a/internal/service/cloudapi/account/utility_account_reserved_units.go +++ b/internal/service/cloudapi/account/utility_account_reserved_units.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_rg_list.go b/internal/service/cloudapi/account/utility_account_rg_list.go index 839fdf4..23f2297 100644 --- a/internal/service/cloudapi/account/utility_account_rg_list.go +++ b/internal/service/cloudapi/account/utility_account_rg_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_templates_list.go b/internal/service/cloudapi/account/utility_account_templates_list.go index 4da1e9a..6a71058 100644 --- a/internal/service/cloudapi/account/utility_account_templates_list.go +++ b/internal/service/cloudapi/account/utility_account_templates_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/account/utility_account_vins_list.go b/internal/service/cloudapi/account/utility_account_vins_list.go index 814fe77..0b23120 100644 --- a/internal/service/cloudapi/account/utility_account_vins_list.go +++ b/internal/service/cloudapi/account/utility_account_vins_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/bservice/api.go b/internal/service/cloudapi/bservice/api.go index 824e76a..aaf2621 100644 --- a/internal/service/cloudapi/bservice/api.go +++ b/internal/service/cloudapi/bservice/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice diff --git a/internal/service/cloudapi/bservice/data_source_bservice.go b/internal/service/cloudapi/bservice/data_source_bservice.go index 0658f3f..281d0f5 100644 --- a/internal/service/cloudapi/bservice/data_source_bservice.go +++ b/internal/service/cloudapi/bservice/data_source_bservice.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceBasicServiceRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/data_source_bservice_deleted_list.go b/internal/service/cloudapi/bservice/data_source_bservice_deleted_list.go index 5d9b63c..a99013c 100644 --- a/internal/service/cloudapi/bservice/data_source_bservice_deleted_list.go +++ b/internal/service/cloudapi/bservice/data_source_bservice_deleted_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceBasicServiceDeletedListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/data_source_bservice_group.go b/internal/service/cloudapi/bservice/data_source_bservice_group.go index d526b19..4cd87ef 100644 --- a/internal/service/cloudapi/bservice/data_source_bservice_group.go +++ b/internal/service/cloudapi/bservice/data_source_bservice_group.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceBasicServiceGroupRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/data_source_bservice_list.go b/internal/service/cloudapi/bservice/data_source_bservice_list.go index 936641a..954f5bd 100644 --- a/internal/service/cloudapi/bservice/data_source_bservice_list.go +++ b/internal/service/cloudapi/bservice/data_source_bservice_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenBasicServiceList(bsl BasicServiceList) []map[string]interface{} { diff --git a/internal/service/cloudapi/bservice/data_source_bservice_snapshot_list.go b/internal/service/cloudapi/bservice/data_source_bservice_snapshot_list.go index 5f9ef78..e1b6c55 100644 --- a/internal/service/cloudapi/bservice/data_source_bservice_snapshot_list.go +++ b/internal/service/cloudapi/bservice/data_source_bservice_snapshot_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceBasicServiceSnapshotListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/models.go b/internal/service/cloudapi/bservice/models.go index 9e2734d..5de2f0d 100644 --- a/internal/service/cloudapi/bservice/models.go +++ b/internal/service/cloudapi/bservice/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice diff --git a/internal/service/cloudapi/bservice/resource_bservice.go b/internal/service/cloudapi/bservice/resource_bservice.go index 78d40d4..de2e1a4 100644 --- a/internal/service/cloudapi/bservice/resource_bservice.go +++ b/internal/service/cloudapi/bservice/resource_bservice.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -40,8 +40,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceBasicServiceCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/resource_bservice_group.go b/internal/service/cloudapi/bservice/resource_bservice_group.go index 001e708..bf5a1b3 100644 --- a/internal/service/cloudapi/bservice/resource_bservice_group.go +++ b/internal/service/cloudapi/bservice/resource_bservice_group.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -42,8 +42,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceBasicServiceGroupCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/bservice/utility_bservicce_deleted_list.go b/internal/service/cloudapi/bservice/utility_bservicce_deleted_list.go index 9fa13b5..8005a4f 100644 --- a/internal/service/cloudapi/bservice/utility_bservicce_deleted_list.go +++ b/internal/service/cloudapi/bservice/utility_bservicce_deleted_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/bservice/utility_bservice.go b/internal/service/cloudapi/bservice/utility_bservice.go index 7adf743..a61f37a 100644 --- a/internal/service/cloudapi/bservice/utility_bservice.go +++ b/internal/service/cloudapi/bservice/utility_bservice.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/bservice/utility_bservice_group.go b/internal/service/cloudapi/bservice/utility_bservice_group.go index f97090c..6adac79 100644 --- a/internal/service/cloudapi/bservice/utility_bservice_group.go +++ b/internal/service/cloudapi/bservice/utility_bservice_group.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/bservice/utility_bservice_list.go b/internal/service/cloudapi/bservice/utility_bservice_list.go index 2a1198a..abeddf1 100644 --- a/internal/service/cloudapi/bservice/utility_bservice_list.go +++ b/internal/service/cloudapi/bservice/utility_bservice_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/bservice/utility_bservice_snapshot_list.go b/internal/service/cloudapi/bservice/utility_bservice_snapshot_list.go index a00c2e9..453a879 100644 --- a/internal/service/cloudapi/bservice/utility_bservice_snapshot_list.go +++ b/internal/service/cloudapi/bservice/utility_bservice_snapshot_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package bservice @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/disks/api.go b/internal/service/cloudapi/disks/api.go index fe0c1f7..cefd9d2 100644 --- a/internal/service/cloudapi/disks/api.go +++ b/internal/service/cloudapi/disks/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks diff --git a/internal/service/cloudapi/disks/data_source_disk.go b/internal/service/cloudapi/disks/data_source_disk.go index 27bb2fb..d9778df 100644 --- a/internal/service/cloudapi/disks/data_source_disk.go +++ b/internal/service/cloudapi/disks/data_source_disk.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -39,7 +39,7 @@ import ( // "net/url" "github.com/google/uuid" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/disks/data_source_disk_list.go b/internal/service/cloudapi/disks/data_source_disk_list.go index 0e741f6..810f1fe 100644 --- a/internal/service/cloudapi/disks/data_source_disk_list.go +++ b/internal/service/cloudapi/disks/data_source_disk_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -39,7 +39,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenDiskComputes(computes map[string]string) []map[string]interface{} { diff --git a/internal/service/cloudapi/disks/data_source_disk_list_types.go b/internal/service/cloudapi/disks/data_source_disk_list_types.go index e7edbbb..41b92a4 100644 --- a/internal/service/cloudapi/disks/data_source_disk_list_types.go +++ b/internal/service/cloudapi/disks/data_source_disk_list_types.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceDiskListTypesRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/disks/data_source_disk_list_types_detailed.go b/internal/service/cloudapi/disks/data_source_disk_list_types_detailed.go index 3522ab2..efc8a88 100644 --- a/internal/service/cloudapi/disks/data_source_disk_list_types_detailed.go +++ b/internal/service/cloudapi/disks/data_source_disk_list_types_detailed.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenDiskListTypesDetailed(tld TypesDetailedList) []map[string]interface{} { diff --git a/internal/service/cloudapi/disks/data_source_disk_list_unattached.go b/internal/service/cloudapi/disks/data_source_disk_list_unattached.go index e0856d9..556598d 100644 --- a/internal/service/cloudapi/disks/data_source_disk_list_unattached.go +++ b/internal/service/cloudapi/disks/data_source_disk_list_unattached.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -41,9 +41,9 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/disks/data_source_disk_snapshot.go b/internal/service/cloudapi/disks/data_source_disk_snapshot.go index 2bc9aff..a9ed76f 100644 --- a/internal/service/cloudapi/disks/data_source_disk_snapshot.go +++ b/internal/service/cloudapi/disks/data_source_disk_snapshot.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceDiskSnapshotRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/disks/data_source_disk_snapshot_list.go b/internal/service/cloudapi/disks/data_source_disk_snapshot_list.go index 434aa65..b196d69 100644 --- a/internal/service/cloudapi/disks/data_source_disk_snapshot_list.go +++ b/internal/service/cloudapi/disks/data_source_disk_snapshot_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceDiskSnapshotListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/disks/data_source_list_deleted.go b/internal/service/cloudapi/disks/data_source_list_deleted.go index 0e27d25..f8bec6e 100644 --- a/internal/service/cloudapi/disks/data_source_list_deleted.go +++ b/internal/service/cloudapi/disks/data_source_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceDiskListDeletedRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/disks/models.go b/internal/service/cloudapi/disks/models.go index b4d5ec7..1ad2416 100644 --- a/internal/service/cloudapi/disks/models.go +++ b/internal/service/cloudapi/disks/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks diff --git a/internal/service/cloudapi/disks/resource_disk.go b/internal/service/cloudapi/disks/resource_disk.go index d4f0967..f5d1060 100644 --- a/internal/service/cloudapi/disks/resource_disk.go +++ b/internal/service/cloudapi/disks/resource_disk.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -40,10 +40,10 @@ import ( "strconv" "strings" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/dc" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/status" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/dc" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/status" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudapi/disks/resource_disk_snapshot.go b/internal/service/cloudapi/disks/resource_disk_snapshot.go index 2175c57..233ffd9 100644 --- a/internal/service/cloudapi/disks/resource_disk_snapshot.go +++ b/internal/service/cloudapi/disks/resource_disk_snapshot.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -39,8 +39,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/disks/utility_disk.go b/internal/service/cloudapi/disks/utility_disk.go index 43c0842..048231c 100644 --- a/internal/service/cloudapi/disks/utility_disk.go +++ b/internal/service/cloudapi/disks/utility_disk.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/disks/utility_disk_list.go b/internal/service/cloudapi/disks/utility_disk_list.go index f9ca3d0..630a4f5 100644 --- a/internal/service/cloudapi/disks/utility_disk_list.go +++ b/internal/service/cloudapi/disks/utility_disk_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -39,7 +39,7 @@ import ( "strconv" "strings" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/disks/utility_disk_types_detailed_list.go b/internal/service/cloudapi/disks/utility_disk_types_detailed_list.go index a7d6612..c92ffcf 100644 --- a/internal/service/cloudapi/disks/utility_disk_types_detailed_list.go +++ b/internal/service/cloudapi/disks/utility_disk_types_detailed_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "net/url" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/disks/utility_disk_types_list.go b/internal/service/cloudapi/disks/utility_disk_types_list.go index 159f4b5..1c2a8c6 100644 --- a/internal/service/cloudapi/disks/utility_disk_types_list.go +++ b/internal/service/cloudapi/disks/utility_disk_types_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "net/url" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/extnet/api.go b/internal/service/cloudapi/extnet/api.go index 335cd89..32e8d01 100644 --- a/internal/service/cloudapi/extnet/api.go +++ b/internal/service/cloudapi/extnet/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet diff --git a/internal/service/cloudapi/extnet/data_source_extnet.go b/internal/service/cloudapi/extnet/data_source_extnet.go index 7b29b27..75a919f 100644 --- a/internal/service/cloudapi/extnet/data_source_extnet.go +++ b/internal/service/cloudapi/extnet/data_source_extnet.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -38,8 +38,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func dataSourceExtnetRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/extnet/data_source_extnet_computes_list.go b/internal/service/cloudapi/extnet/data_source_extnet_computes_list.go index 04592df..d969845 100644 --- a/internal/service/cloudapi/extnet/data_source_extnet_computes_list.go +++ b/internal/service/cloudapi/extnet/data_source_extnet_computes_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenExtnetsComputes(ecs ExtnetExtendList) []map[string]interface{} { diff --git a/internal/service/cloudapi/extnet/data_source_extnet_default.go b/internal/service/cloudapi/extnet/data_source_extnet_default.go index 7d0cc70..8cef8b0 100644 --- a/internal/service/cloudapi/extnet/data_source_extnet_default.go +++ b/internal/service/cloudapi/extnet/data_source_extnet_default.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -39,7 +39,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceExtnetDefaultRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/extnet/data_source_extnet_list.go b/internal/service/cloudapi/extnet/data_source_extnet_list.go index ebab0f3..94dcdbb 100644 --- a/internal/service/cloudapi/extnet/data_source_extnet_list.go +++ b/internal/service/cloudapi/extnet/data_source_extnet_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenExtnetList(el ExtnetList) []map[string]interface{} { diff --git a/internal/service/cloudapi/extnet/models.go b/internal/service/cloudapi/extnet/models.go index 9958af0..e2d05c6 100644 --- a/internal/service/cloudapi/extnet/models.go +++ b/internal/service/cloudapi/extnet/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet diff --git a/internal/service/cloudapi/extnet/utility_extnet.go b/internal/service/cloudapi/extnet/utility_extnet.go index 54334ce..99a3e5d 100644 --- a/internal/service/cloudapi/extnet/utility_extnet.go +++ b/internal/service/cloudapi/extnet/utility_extnet.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/extnet/utility_extnet_computes_list.go b/internal/service/cloudapi/extnet/utility_extnet_computes_list.go index a91fed7..05bc48a 100644 --- a/internal/service/cloudapi/extnet/utility_extnet_computes_list.go +++ b/internal/service/cloudapi/extnet/utility_extnet_computes_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/extnet/utility_extnet_default.go b/internal/service/cloudapi/extnet/utility_extnet_default.go index 6dd1481..f55f7b3 100644 --- a/internal/service/cloudapi/extnet/utility_extnet_default.go +++ b/internal/service/cloudapi/extnet/utility_extnet_default.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -37,7 +37,7 @@ import ( "net/url" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityExtnetDefaultCheckPresence(ctx context.Context, m interface{}) (string, error) { diff --git a/internal/service/cloudapi/extnet/utility_extnet_list.go b/internal/service/cloudapi/extnet/utility_extnet_list.go index 42a16bd..dbd6d0f 100644 --- a/internal/service/cloudapi/extnet/utility_extnet_list.go +++ b/internal/service/cloudapi/extnet/utility_extnet_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package extnet @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/image/api.go b/internal/service/cloudapi/image/api.go index 337486c..f662bfd 100644 --- a/internal/service/cloudapi/image/api.go +++ b/internal/service/cloudapi/image/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/data_source_image.go b/internal/service/cloudapi/image/data_source_image.go index 4cabe1b..e841829 100644 --- a/internal/service/cloudapi/image/data_source_image.go +++ b/internal/service/cloudapi/image/data_source_image.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenHistory(history []History) []map[string]interface{} { diff --git a/internal/service/cloudapi/image/data_source_image_list.go b/internal/service/cloudapi/image/data_source_image_list.go index 3b01484..3793d53 100644 --- a/internal/service/cloudapi/image/data_source_image_list.go +++ b/internal/service/cloudapi/image/data_source_image_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenImageList(il ImageList) []map[string]interface{} { diff --git a/internal/service/cloudapi/image/image_ds_subresource.go b/internal/service/cloudapi/image/image_ds_subresource.go index 526413c..9d9cd8d 100644 --- a/internal/service/cloudapi/image/image_ds_subresource.go +++ b/internal/service/cloudapi/image/image_ds_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/image_item_subresource.go b/internal/service/cloudapi/image/image_item_subresource.go index 578cd2d..6194f4d 100644 --- a/internal/service/cloudapi/image/image_item_subresource.go +++ b/internal/service/cloudapi/image/image_item_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/image_rs_subresource.go b/internal/service/cloudapi/image/image_rs_subresource.go index 4383271..5bdb158 100644 --- a/internal/service/cloudapi/image/image_rs_subresource.go +++ b/internal/service/cloudapi/image/image_rs_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/image_virtual_rs_subresource.go b/internal/service/cloudapi/image/image_virtual_rs_subresource.go index 555fa22..fb481ab 100644 --- a/internal/service/cloudapi/image/image_virtual_rs_subresource.go +++ b/internal/service/cloudapi/image/image_virtual_rs_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/models.go b/internal/service/cloudapi/image/models.go index 9efd006..12c2f94 100644 --- a/internal/service/cloudapi/image/models.go +++ b/internal/service/cloudapi/image/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudapi/image/resource_image.go b/internal/service/cloudapi/image/resource_image.go index 16af72c..edd574d 100644 --- a/internal/service/cloudapi/image/resource_image.go +++ b/internal/service/cloudapi/image/resource_image.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -40,8 +40,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/image/resource_image_virtual.go b/internal/service/cloudapi/image/resource_image_virtual.go index 220e751..89662e3 100644 --- a/internal/service/cloudapi/image/resource_image_virtual.go +++ b/internal/service/cloudapi/image/resource_image_virtual.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -39,8 +39,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/image/utility_image.go b/internal/service/cloudapi/image/utility_image.go index 4875b02..25a711b 100644 --- a/internal/service/cloudapi/image/utility_image.go +++ b/internal/service/cloudapi/image/utility_image.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -41,7 +41,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityImageCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*ImageExtend, error) { diff --git a/internal/service/cloudapi/image/utility_image_list.go b/internal/service/cloudapi/image/utility_image_list.go index da46ff4..c89730f 100644 --- a/internal/service/cloudapi/image/utility_image_list.go +++ b/internal/service/cloudapi/image/utility_image_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/k8s/api.go b/internal/service/cloudapi/k8s/api.go index 1013956..bb53527 100644 --- a/internal/service/cloudapi/k8s/api.go +++ b/internal/service/cloudapi/k8s/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudapi/k8s/data_source_k8s.go b/internal/service/cloudapi/k8s/data_source_k8s.go index 0cbe38b..c4db28a 100644 --- a/internal/service/cloudapi/k8s/data_source_k8s.go +++ b/internal/service/cloudapi/k8s/data_source_k8s.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -40,11 +40,11 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" ) func dataSourceK8sRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/k8s/data_source_k8s_list.go b/internal/service/cloudapi/k8s/data_source_k8s_list.go index 60f21f6..3d86805 100644 --- a/internal/service/cloudapi/k8s/data_source_k8s_list.go +++ b/internal/service/cloudapi/k8s/data_source_k8s_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceK8sListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/k8s/data_source_k8s_list_deleted.go b/internal/service/cloudapi/k8s/data_source_k8s_list_deleted.go index 4812074..c5d8ded 100644 --- a/internal/service/cloudapi/k8s/data_source_k8s_list_deleted.go +++ b/internal/service/cloudapi/k8s/data_source_k8s_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceK8sListDeletedRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/k8s/data_source_k8s_wg.go b/internal/service/cloudapi/k8s/data_source_k8s_wg.go index 4fb5a00..5850d32 100644 --- a/internal/service/cloudapi/k8s/data_source_k8s_wg.go +++ b/internal/service/cloudapi/k8s/data_source_k8s_wg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -38,8 +38,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/k8s/data_source_k8s_wg_list.go b/internal/service/cloudapi/k8s/data_source_k8s_wg_list.go index 2c13737..7cb3ccc 100644 --- a/internal/service/cloudapi/k8s/data_source_k8s_wg_list.go +++ b/internal/service/cloudapi/k8s/data_source_k8s_wg_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -40,9 +40,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" ) func utilityK8sWgListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (K8SGroupList, error) { diff --git a/internal/service/cloudapi/k8s/flattens.go b/internal/service/cloudapi/k8s/flattens.go index 3e1a136..1ff1280 100644 --- a/internal/service/cloudapi/k8s/flattens.go +++ b/internal/service/cloudapi/k8s/flattens.go @@ -22,19 +22,19 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" ) func flattenAclList(aclList ACLList) []map[string]interface{} { diff --git a/internal/service/cloudapi/k8s/models.go b/internal/service/cloudapi/k8s/models.go index d2acebd..b60029f 100644 --- a/internal/service/cloudapi/k8s/models.go +++ b/internal/service/cloudapi/k8s/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudapi/k8s/node_subresource.go b/internal/service/cloudapi/k8s/node_subresource.go index 8f380ff..a2c725f 100644 --- a/internal/service/cloudapi/k8s/node_subresource.go +++ b/internal/service/cloudapi/k8s/node_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudapi/k8s/resource_k8s.go b/internal/service/cloudapi/k8s/resource_k8s.go index c40340d..81b8e61 100644 --- a/internal/service/cloudapi/k8s/resource_k8s.go +++ b/internal/service/cloudapi/k8s/resource_k8s.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -43,9 +43,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/k8s/resource_k8s_wg.go b/internal/service/cloudapi/k8s/resource_k8s_wg.go index 3ca7042..1f2f0ed 100644 --- a/internal/service/cloudapi/k8s/resource_k8s_wg.go +++ b/internal/service/cloudapi/k8s/resource_k8s_wg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -40,9 +40,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/k8s/utility_k8s.go b/internal/service/cloudapi/k8s/utility_k8s.go index 5f6c603..cb9cab6 100644 --- a/internal/service/cloudapi/k8s/utility_k8s.go +++ b/internal/service/cloudapi/k8s/utility_k8s.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -40,8 +40,8 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/service/cloudapi/kvmvm" ) func utilityK8sCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*K8SRecord, error) { diff --git a/internal/service/cloudapi/k8s/utility_k8s_wg.go b/internal/service/cloudapi/k8s/utility_k8s_wg.go index 4278242..958528b 100644 --- a/internal/service/cloudapi/k8s/utility_k8s_wg.go +++ b/internal/service/cloudapi/k8s/utility_k8s_wg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -40,7 +40,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityK8sWgCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*K8SGroup, error) { diff --git a/internal/service/cloudapi/kvmvm/api.go b/internal/service/cloudapi/kvmvm/api.go index f88ae13..72b93cf 100644 --- a/internal/service/cloudapi/kvmvm/api.go +++ b/internal/service/cloudapi/kvmvm/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudapi/kvmvm/data_source_compute.go b/internal/service/cloudapi/kvmvm/data_source_compute.go index e91bc9d..f9193e0 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -36,7 +36,7 @@ import ( "context" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_audits.go b/internal/service/cloudapi/kvmvm/data_source_compute_audits.go index 42f9f5d..59b109f 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_audits.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeAuditsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_get_audits.go b/internal/service/cloudapi/kvmvm/data_source_compute_get_audits.go index 53a4a51..c43cca6 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_get_audits.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_get_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeGetAuditsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_get_console_url.go b/internal/service/cloudapi/kvmvm/data_source_compute_get_console_url.go index b439006..5be7989 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_get_console_url.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_get_console_url.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeGetConsoleUrlRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_get_log.go b/internal/service/cloudapi/kvmvm/data_source_compute_get_log.go index fc7ff51..839e1d4 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_get_log.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_get_log.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeGetLogRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_list.go b/internal/service/cloudapi/kvmvm/data_source_compute_list.go index ce3cff7..525ce1d 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_list.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_pfw_list.go b/internal/service/cloudapi/kvmvm/data_source_compute_pfw_list.go index 4c286b1..2ed82c9 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_pfw_list.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_pfw_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputePfwListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/data_source_compute_user_list.go b/internal/service/cloudapi/kvmvm/data_source_compute_user_list.go index b12d2d2..921a307 100644 --- a/internal/service/cloudapi/kvmvm/data_source_compute_user_list.go +++ b/internal/service/cloudapi/kvmvm/data_source_compute_user_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceComputeUserListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/kvmvm/flattens.go b/internal/service/cloudapi/kvmvm/flattens.go index 321f171..de85fc3 100644 --- a/internal/service/cloudapi/kvmvm/flattens.go +++ b/internal/service/cloudapi/kvmvm/flattens.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/status" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/status" ) func flattenDisks(disks []InfoDisk) []map[string]interface{} { diff --git a/internal/service/cloudapi/kvmvm/models.go b/internal/service/cloudapi/kvmvm/models.go index dbf4296..98fde45 100644 --- a/internal/service/cloudapi/kvmvm/models.go +++ b/internal/service/cloudapi/kvmvm/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudapi/kvmvm/network_subresource.go b/internal/service/cloudapi/kvmvm/network_subresource.go index 8b7d466..c9be582 100644 --- a/internal/service/cloudapi/kvmvm/network_subresource.go +++ b/internal/service/cloudapi/kvmvm/network_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -36,7 +36,7 @@ import ( "bytes" "hash/fnv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/statefuncs" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" log "github.com/sirupsen/logrus" "sort" diff --git a/internal/service/cloudapi/kvmvm/osusers_subresource.go b/internal/service/cloudapi/kvmvm/osusers_subresource.go index 82e0bef..96b7828 100644 --- a/internal/service/cloudapi/kvmvm/osusers_subresource.go +++ b/internal/service/cloudapi/kvmvm/osusers_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudapi/kvmvm/resource_check_input_values.go b/internal/service/cloudapi/kvmvm/resource_check_input_values.go index 017d697..f47608e 100644 --- a/internal/service/cloudapi/kvmvm/resource_check_input_values.go +++ b/internal/service/cloudapi/kvmvm/resource_check_input_values.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func existRgID(ctx context.Context, d *schema.ResourceData, m interface{}) bool { diff --git a/internal/service/cloudapi/kvmvm/resource_compute.go b/internal/service/cloudapi/kvmvm/resource_compute.go index dd50c21..d8775e5 100644 --- a/internal/service/cloudapi/kvmvm/resource_compute.go +++ b/internal/service/cloudapi/kvmvm/resource_compute.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,11 +38,11 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/dc" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/statefuncs" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/status" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/dc" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/status" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudapi/kvmvm/utility_compute.go b/internal/service/cloudapi/kvmvm/utility_compute.go index 4defaec..3135dfb 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute.go +++ b/internal/service/cloudapi/kvmvm/utility_compute.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "fmt" "net/url" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/kvmvm/utility_compute_audits.go b/internal/service/cloudapi/kvmvm/utility_compute_audits.go index 3b96aa3..a80950c 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_audits.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputeAuditsCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListAudits, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_boot_disk.go b/internal/service/cloudapi/kvmvm/utility_compute_boot_disk.go index 2a439be..850626a 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_boot_disk.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_boot_disk.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudapi/kvmvm/utility_compute_get_audits.go b/internal/service/cloudapi/kvmvm/utility_compute_get_audits.go index d359614..ec0fe1f 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_get_audits.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_get_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputeGetAuditsCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListShortAudits, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_get_console_url.go b/internal/service/cloudapi/kvmvm/utility_compute_get_console_url.go index 82418d2..cba140b 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_get_console_url.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_get_console_url.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputeGetConsoleUrlCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (string, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_get_log.go b/internal/service/cloudapi/kvmvm/utility_compute_get_log.go index 42e4262..a2eb226 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_get_log.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_get_log.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputeGetLogCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (string, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_list.go b/internal/service/cloudapi/kvmvm/utility_compute_list.go index 0b64732..8b9cff2 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_list.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityDataComputeListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListComputes, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_pfw_list.go b/internal/service/cloudapi/kvmvm/utility_compute_pfw_list.go index fbc4343..4002758 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_pfw_list.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_pfw_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputePfwListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListPFWs, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_compute_user_list.go b/internal/service/cloudapi/kvmvm/utility_compute_user_list.go index f779409..cc3a1e2 100644 --- a/internal/service/cloudapi/kvmvm/utility_compute_user_list.go +++ b/internal/service/cloudapi/kvmvm/utility_compute_user_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityComputeUserListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (RecordACL, error) { diff --git a/internal/service/cloudapi/kvmvm/utility_data_source_compute.go b/internal/service/cloudapi/kvmvm/utility_data_source_compute.go index 51a9d5a..e99b6c9 100644 --- a/internal/service/cloudapi/kvmvm/utility_data_source_compute.go +++ b/internal/service/cloudapi/kvmvm/utility_data_source_compute.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityDataComputeCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (RecordCompute, error) { diff --git a/internal/service/cloudapi/lb/api.go b/internal/service/cloudapi/lb/api.go index aa44ccb..5adc68d 100644 --- a/internal/service/cloudapi/lb/api.go +++ b/internal/service/cloudapi/lb/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/data_source_lb.go b/internal/service/cloudapi/lb/data_source_lb.go index fe9e6ce..1e29660 100644 --- a/internal/service/cloudapi/lb/data_source_lb.go +++ b/internal/service/cloudapi/lb/data_source_lb.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenLB(d *schema.ResourceData, lb *LoadBalancer) { diff --git a/internal/service/cloudapi/lb/data_source_lb_list.go b/internal/service/cloudapi/lb/data_source_lb_list.go index 483f6de..59cec33 100644 --- a/internal/service/cloudapi/lb/data_source_lb_list.go +++ b/internal/service/cloudapi/lb/data_source_lb_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenLBList(lbl LBList) []map[string]interface{} { diff --git a/internal/service/cloudapi/lb/data_source_lb_list_deleted.go b/internal/service/cloudapi/lb/data_source_lb_list_deleted.go index 2aac99c..d4b0f15 100644 --- a/internal/service/cloudapi/lb/data_source_lb_list_deleted.go +++ b/internal/service/cloudapi/lb/data_source_lb_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceLBListDeletedRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/flattens.go b/internal/service/cloudapi/lb/flattens.go index f353df3..d9c6b9f 100644 --- a/internal/service/cloudapi/lb/flattens.go +++ b/internal/service/cloudapi/lb/flattens.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/lb_data_subresource.go b/internal/service/cloudapi/lb/lb_data_subresource.go index fbd95ce..4e00cfb 100644 --- a/internal/service/cloudapi/lb/lb_data_subresource.go +++ b/internal/service/cloudapi/lb/lb_data_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/lb_resource_subresource.go b/internal/service/cloudapi/lb/lb_resource_subresource.go index 8fb603b..6679466 100644 --- a/internal/service/cloudapi/lb/lb_resource_subresource.go +++ b/internal/service/cloudapi/lb/lb_resource_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/lb_schema.go b/internal/service/cloudapi/lb/lb_schema.go index 7569d8c..fac4c7d 100644 --- a/internal/service/cloudapi/lb/lb_schema.go +++ b/internal/service/cloudapi/lb/lb_schema.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/models.go b/internal/service/cloudapi/lb/models.go index 87858ee..9c495ec 100644 --- a/internal/service/cloudapi/lb/models.go +++ b/internal/service/cloudapi/lb/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb diff --git a/internal/service/cloudapi/lb/resource_lb.go b/internal/service/cloudapi/lb/resource_lb.go index 995ef52..45138bc 100644 --- a/internal/service/cloudapi/lb/resource_lb.go +++ b/internal/service/cloudapi/lb/resource_lb.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -40,8 +40,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceLBCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/resource_lb_backend.go b/internal/service/cloudapi/lb/resource_lb_backend.go index dccf21d..8ae4a1a 100644 --- a/internal/service/cloudapi/lb/resource_lb_backend.go +++ b/internal/service/cloudapi/lb/resource_lb_backend.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -42,8 +42,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceLBBackendCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/resource_lb_backend_server.go b/internal/service/cloudapi/lb/resource_lb_backend_server.go index f3d1ef8..9514b7f 100644 --- a/internal/service/cloudapi/lb/resource_lb_backend_server.go +++ b/internal/service/cloudapi/lb/resource_lb_backend_server.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -42,8 +42,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceLBBackendServerCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/resource_lb_frontend.go b/internal/service/cloudapi/lb/resource_lb_frontend.go index 2373b54..6b321b9 100644 --- a/internal/service/cloudapi/lb/resource_lb_frontend.go +++ b/internal/service/cloudapi/lb/resource_lb_frontend.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,8 +41,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceLBFrontendCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/resource_lb_frontend_bind.go b/internal/service/cloudapi/lb/resource_lb_frontend_bind.go index 25145e4..f7bf96e 100644 --- a/internal/service/cloudapi/lb/resource_lb_frontend_bind.go +++ b/internal/service/cloudapi/lb/resource_lb_frontend_bind.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,8 +41,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceLBFrontendBindCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/lb/utility_lb.go b/internal/service/cloudapi/lb/utility_lb.go index b941689..71f041e 100644 --- a/internal/service/cloudapi/lb/utility_lb.go +++ b/internal/service/cloudapi/lb/utility_lb.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -40,7 +40,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLBCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*LoadBalancer, error) { diff --git a/internal/service/cloudapi/lb/utility_lb_backend.go b/internal/service/cloudapi/lb/utility_lb_backend.go index 14dd029..7cc936f 100644 --- a/internal/service/cloudapi/lb/utility_lb_backend.go +++ b/internal/service/cloudapi/lb/utility_lb_backend.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,7 +41,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLBBackendCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Backend, error) { diff --git a/internal/service/cloudapi/lb/utility_lb_backend_server.go b/internal/service/cloudapi/lb/utility_lb_backend_server.go index 1ea65c8..91c71d9 100644 --- a/internal/service/cloudapi/lb/utility_lb_backend_server.go +++ b/internal/service/cloudapi/lb/utility_lb_backend_server.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,7 +41,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLBBackendServerCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Server, error) { diff --git a/internal/service/cloudapi/lb/utility_lb_frontend.go b/internal/service/cloudapi/lb/utility_lb_frontend.go index 44819fd..b7e80c2 100644 --- a/internal/service/cloudapi/lb/utility_lb_frontend.go +++ b/internal/service/cloudapi/lb/utility_lb_frontend.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,7 +41,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLBFrontendCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Frontend, error) { diff --git a/internal/service/cloudapi/lb/utility_lb_frontend_bind.go b/internal/service/cloudapi/lb/utility_lb_frontend_bind.go index a818ca6..b4966d6 100644 --- a/internal/service/cloudapi/lb/utility_lb_frontend_bind.go +++ b/internal/service/cloudapi/lb/utility_lb_frontend_bind.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -41,7 +41,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLBFrontendBindCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Binding, error) { diff --git a/internal/service/cloudapi/lb/utility_lb_list.go b/internal/service/cloudapi/lb/utility_lb_list.go index 5f5ebd7..1fa9a4b 100644 --- a/internal/service/cloudapi/lb/utility_lb_list.go +++ b/internal/service/cloudapi/lb/utility_lb_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/lb/utility_lb_list_deleted.go b/internal/service/cloudapi/lb/utility_lb_list_deleted.go index 0c473e2..a52e740 100644 --- a/internal/service/cloudapi/lb/utility_lb_list_deleted.go +++ b/internal/service/cloudapi/lb/utility_lb_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package lb @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/locations/data_source_locations_list.go b/internal/service/cloudapi/locations/data_source_locations_list.go index 0cdc11a..c329f4f 100644 --- a/internal/service/cloudapi/locations/data_source_locations_list.go +++ b/internal/service/cloudapi/locations/data_source_locations_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package locations @@ -38,8 +38,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func flattenLocationsList(ll LocationsList) []map[string]interface{} { diff --git a/internal/service/cloudapi/locations/data_source_locations_url.go b/internal/service/cloudapi/locations/data_source_locations_url.go index 6405dab..3e5718e 100644 --- a/internal/service/cloudapi/locations/data_source_locations_url.go +++ b/internal/service/cloudapi/locations/data_source_locations_url.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package locations @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceLocationUrlRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/locations/utility_location_url.go b/internal/service/cloudapi/locations/utility_location_url.go index 1c4df74..735d5b6 100644 --- a/internal/service/cloudapi/locations/utility_location_url.go +++ b/internal/service/cloudapi/locations/utility_location_url.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package locations @@ -38,7 +38,7 @@ import ( "net/url" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityLocationUrlCheckPresence(ctx context.Context, m interface{}) (string, error) { diff --git a/internal/service/cloudapi/locations/utility_locations_list.go b/internal/service/cloudapi/locations/utility_locations_list.go index 2beada9..d583b63 100644 --- a/internal/service/cloudapi/locations/utility_locations_list.go +++ b/internal/service/cloudapi/locations/utility_locations_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package locations @@ -39,7 +39,7 @@ import ( "strconv" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/pfw/api.go b/internal/service/cloudapi/pfw/api.go index 480432d..e1591f9 100644 --- a/internal/service/cloudapi/pfw/api.go +++ b/internal/service/cloudapi/pfw/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw diff --git a/internal/service/cloudapi/pfw/models.go b/internal/service/cloudapi/pfw/models.go index 9b31f31..b3bf93e 100644 --- a/internal/service/cloudapi/pfw/models.go +++ b/internal/service/cloudapi/pfw/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw diff --git a/internal/service/cloudapi/pfw/resource_pfw.go b/internal/service/cloudapi/pfw/resource_pfw.go index 3360ac2..981f962 100644 --- a/internal/service/cloudapi/pfw/resource_pfw.go +++ b/internal/service/cloudapi/pfw/resource_pfw.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw @@ -42,8 +42,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourcePfwCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/pfw/utility_pfw.go b/internal/service/cloudapi/pfw/utility_pfw.go index cbed12a..88f113b 100644 --- a/internal/service/cloudapi/pfw/utility_pfw.go +++ b/internal/service/cloudapi/pfw/utility_pfw.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw @@ -40,7 +40,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityPfwCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*PfwRecord, error) { diff --git a/internal/service/cloudapi/rg/api.go b/internal/service/cloudapi/rg/api.go index 3089b6b..dce02ce 100644 --- a/internal/service/cloudapi/rg/api.go +++ b/internal/service/cloudapi/rg/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudapi/rg/data_source_rg.go b/internal/service/cloudapi/rg/data_source_rg.go index e4b3ddd..bcaeb28 100644 --- a/internal/service/cloudapi/rg/data_source_rg.go +++ b/internal/service/cloudapi/rg/data_source_rg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -36,7 +36,7 @@ import ( "context" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/rg/data_source_rg_affinity_group_computes.go b/internal/service/cloudapi/rg/data_source_rg_affinity_group_computes.go index 4d5ceba..fe8ffa1 100644 --- a/internal/service/cloudapi/rg/data_source_rg_affinity_group_computes.go +++ b/internal/service/cloudapi/rg/data_source_rg_affinity_group_computes.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgAffinityGroupComputesRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_affinity_groups_get.go b/internal/service/cloudapi/rg/data_source_rg_affinity_groups_get.go index 960a2be..c8627d9 100644 --- a/internal/service/cloudapi/rg/data_source_rg_affinity_groups_get.go +++ b/internal/service/cloudapi/rg/data_source_rg_affinity_groups_get.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgAffinityGroupsGetRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_affinity_groups_list.go b/internal/service/cloudapi/rg/data_source_rg_affinity_groups_list.go index 1b82f7a..7cfa0aa 100644 --- a/internal/service/cloudapi/rg/data_source_rg_affinity_groups_list.go +++ b/internal/service/cloudapi/rg/data_source_rg_affinity_groups_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgAffinityGroupsListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_audits.go b/internal/service/cloudapi/rg/data_source_rg_audits.go index 440458a..b634a79 100644 --- a/internal/service/cloudapi/rg/data_source_rg_audits.go +++ b/internal/service/cloudapi/rg/data_source_rg_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgAuditsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list.go b/internal/service/cloudapi/rg/data_source_rg_list.go index edad3c1..780d5d9 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list.go +++ b/internal/service/cloudapi/rg/data_source_rg_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list_computes.go b/internal/service/cloudapi/rg/data_source_rg_list_computes.go index 6bfe4e1..b24a40a 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list_computes.go +++ b/internal/service/cloudapi/rg/data_source_rg_list_computes.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListComputesRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list_deleted.go b/internal/service/cloudapi/rg/data_source_rg_list_deleted.go index 6244961..f6af819 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list_deleted.go +++ b/internal/service/cloudapi/rg/data_source_rg_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListDeletedRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list_lb.go b/internal/service/cloudapi/rg/data_source_rg_list_lb.go index 43f92ad..10ea4c5 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list_lb.go +++ b/internal/service/cloudapi/rg/data_source_rg_list_lb.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListLbRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list_pfw.go b/internal/service/cloudapi/rg/data_source_rg_list_pfw.go index 880fff6..7caa6bd 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list_pfw.go +++ b/internal/service/cloudapi/rg/data_source_rg_list_pfw.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListPfwRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_list_vins.go b/internal/service/cloudapi/rg/data_source_rg_list_vins.go index ea8bad8..fabf6dd 100644 --- a/internal/service/cloudapi/rg/data_source_rg_list_vins.go +++ b/internal/service/cloudapi/rg/data_source_rg_list_vins.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgListVinsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/data_source_rg_usage.go b/internal/service/cloudapi/rg/data_source_rg_usage.go index 8524e03..c5b8c00 100644 --- a/internal/service/cloudapi/rg/data_source_rg_usage.go +++ b/internal/service/cloudapi/rg/data_source_rg_usage.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceRgUsageRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/rg/flattens.go b/internal/service/cloudapi/rg/flattens.go index 214b01d..d21273f 100644 --- a/internal/service/cloudapi/rg/flattens.go +++ b/internal/service/cloudapi/rg/flattens.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudapi/rg/models.go b/internal/service/cloudapi/rg/models.go index d4d4f52..666267c 100644 --- a/internal/service/cloudapi/rg/models.go +++ b/internal/service/cloudapi/rg/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudapi/rg/quota_subresource.go b/internal/service/cloudapi/rg/quota_subresource.go index 6030d4d..2158819 100644 --- a/internal/service/cloudapi/rg/quota_subresource.go +++ b/internal/service/cloudapi/rg/quota_subresource.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudapi/rg/resource_check_input_values.go b/internal/service/cloudapi/rg/resource_check_input_values.go index 1e381b7..0b51433 100644 --- a/internal/service/cloudapi/rg/resource_check_input_values.go +++ b/internal/service/cloudapi/rg/resource_check_input_values.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func existAccountID(ctx context.Context, d *schema.ResourceData, m interface{}) (bool, error) { diff --git a/internal/service/cloudapi/rg/resource_rg.go b/internal/service/cloudapi/rg/resource_rg.go index 587fa06..9ddd074 100644 --- a/internal/service/cloudapi/rg/resource_rg.go +++ b/internal/service/cloudapi/rg/resource_rg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,11 +38,11 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/dc" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/location" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/status" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/dc" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/location" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/status" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudapi/rg/utility_rg.go b/internal/service/cloudapi/rg/utility_rg.go index 3971e3f..44c0e70 100644 --- a/internal/service/cloudapi/rg/utility_rg.go +++ b/internal/service/cloudapi/rg/utility_rg.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/rg/utility_rg_affinity_group_computes.go b/internal/service/cloudapi/rg/utility_rg_affinity_group_computes.go index d947a51..13d57f9 100644 --- a/internal/service/cloudapi/rg/utility_rg_affinity_group_computes.go +++ b/internal/service/cloudapi/rg/utility_rg_affinity_group_computes.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgAffinityGroupComputesCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListAffinityGroupCompute, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_affinity_groups_get.go b/internal/service/cloudapi/rg/utility_rg_affinity_groups_get.go index a32865b..f209ad4 100644 --- a/internal/service/cloudapi/rg/utility_rg_affinity_groups_get.go +++ b/internal/service/cloudapi/rg/utility_rg_affinity_groups_get.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgAffinityGroupsGetCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) ([]uint64, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_affinity_groups_list.go b/internal/service/cloudapi/rg/utility_rg_affinity_groups_list.go index a1254a4..81347f5 100644 --- a/internal/service/cloudapi/rg/utility_rg_affinity_groups_list.go +++ b/internal/service/cloudapi/rg/utility_rg_affinity_groups_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgAffinityGroupsListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (map[string][]uint64, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_audits.go b/internal/service/cloudapi/rg/utility_rg_audits.go index 390bfba..b507dbc 100644 --- a/internal/service/cloudapi/rg/utility_rg_audits.go +++ b/internal/service/cloudapi/rg/utility_rg_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgAuditsCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListAudits, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_list.go b/internal/service/cloudapi/rg/utility_rg_list.go index f9b797b..e096132 100644 --- a/internal/service/cloudapi/rg/utility_rg_list.go +++ b/internal/service/cloudapi/rg/utility_rg_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/rg/utility_rg_list_computes.go b/internal/service/cloudapi/rg/utility_rg_list_computes.go index a409914..5bb931a 100644 --- a/internal/service/cloudapi/rg/utility_rg_list_computes.go +++ b/internal/service/cloudapi/rg/utility_rg_list_computes.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgListComputesCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListComputes, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_list_deleted.go b/internal/service/cloudapi/rg/utility_rg_list_deleted.go index 9c43242..1163524 100644 --- a/internal/service/cloudapi/rg/utility_rg_list_deleted.go +++ b/internal/service/cloudapi/rg/utility_rg_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgListDeletedCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListResourceGroups, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_list_lb.go b/internal/service/cloudapi/rg/utility_rg_list_lb.go index 91ce694..86a2467 100644 --- a/internal/service/cloudapi/rg/utility_rg_list_lb.go +++ b/internal/service/cloudapi/rg/utility_rg_list_lb.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgListLbCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListLB, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_list_pfw.go b/internal/service/cloudapi/rg/utility_rg_list_pfw.go index 65632f4..a0d54f1 100644 --- a/internal/service/cloudapi/rg/utility_rg_list_pfw.go +++ b/internal/service/cloudapi/rg/utility_rg_list_pfw.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgListPfwCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListPFW, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_list_vins.go b/internal/service/cloudapi/rg/utility_rg_list_vins.go index 00952bc..5211e95 100644 --- a/internal/service/cloudapi/rg/utility_rg_list_vins.go +++ b/internal/service/cloudapi/rg/utility_rg_list_vins.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityRgListVinsCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ListVINS, error) { diff --git a/internal/service/cloudapi/rg/utility_rg_usage.go b/internal/service/cloudapi/rg/utility_rg_usage.go index 6a5a8d9..329ed0d 100644 --- a/internal/service/cloudapi/rg/utility_rg_usage.go +++ b/internal/service/cloudapi/rg/utility_rg_usage.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityDataRgUsageCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Resource, error) { diff --git a/internal/service/cloudapi/snapshot/api.go b/internal/service/cloudapi/snapshot/api.go index eee7a8f..e5ab471 100644 --- a/internal/service/cloudapi/snapshot/api.go +++ b/internal/service/cloudapi/snapshot/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudapi/snapshot/data_source_snapshot_list.go b/internal/service/cloudapi/snapshot/data_source_snapshot_list.go index 638347d..dce27c2 100644 --- a/internal/service/cloudapi/snapshot/data_source_snapshot_list.go +++ b/internal/service/cloudapi/snapshot/data_source_snapshot_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenSnapshotList(gl SnapshotList) []map[string]interface{} { diff --git a/internal/service/cloudapi/snapshot/models.go b/internal/service/cloudapi/snapshot/models.go index 4868082..9a08e4b 100644 --- a/internal/service/cloudapi/snapshot/models.go +++ b/internal/service/cloudapi/snapshot/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudapi/snapshot/resource_snapshot.go b/internal/service/cloudapi/snapshot/resource_snapshot.go index b9c65c8..7a1084a 100644 --- a/internal/service/cloudapi/snapshot/resource_snapshot.go +++ b/internal/service/cloudapi/snapshot/resource_snapshot.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -41,8 +41,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" log "github.com/sirupsen/logrus" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func resourceSnapshotCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/snapshot/utility_snapshot.go b/internal/service/cloudapi/snapshot/utility_snapshot.go index a33b819..8749e52 100644 --- a/internal/service/cloudapi/snapshot/utility_snapshot.go +++ b/internal/service/cloudapi/snapshot/utility_snapshot.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudapi/snapshot/utility_snapshot_list.go b/internal/service/cloudapi/snapshot/utility_snapshot_list.go index 9814461..85f21ee 100644 --- a/internal/service/cloudapi/snapshot/utility_snapshot_list.go +++ b/internal/service/cloudapi/snapshot/utility_snapshot_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilitySnapshotListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (SnapshotList, error) { diff --git a/internal/service/cloudapi/vins/api.go b/internal/service/cloudapi/vins/api.go index 3a4ec20..c6d61ca 100644 --- a/internal/service/cloudapi/vins/api.go +++ b/internal/service/cloudapi/vins/api.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins diff --git a/internal/service/cloudapi/vins/data_source_vins.go b/internal/service/cloudapi/vins/data_source_vins.go index 991ba86..23cd81b 100644 --- a/internal/service/cloudapi/vins/data_source_vins.go +++ b/internal/service/cloudapi/vins/data_source_vins.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_audits.go b/internal/service/cloudapi/vins/data_source_vins_audits.go index 54eb5b6..c123c7e 100644 --- a/internal/service/cloudapi/vins/data_source_vins_audits.go +++ b/internal/service/cloudapi/vins/data_source_vins_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsAuditsRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_ext_net_list.go b/internal/service/cloudapi/vins/data_source_vins_ext_net_list.go index 988a9da..48a5865 100644 --- a/internal/service/cloudapi/vins/data_source_vins_ext_net_list.go +++ b/internal/service/cloudapi/vins/data_source_vins_ext_net_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsExtNetListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_ip_list.go b/internal/service/cloudapi/vins/data_source_vins_ip_list.go index bfdaeac..76c7d2d 100644 --- a/internal/service/cloudapi/vins/data_source_vins_ip_list.go +++ b/internal/service/cloudapi/vins/data_source_vins_ip_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsIpListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_list.go b/internal/service/cloudapi/vins/data_source_vins_list.go index 44641b1..0d3812a 100644 --- a/internal/service/cloudapi/vins/data_source_vins_list.go +++ b/internal/service/cloudapi/vins/data_source_vins_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_list_deleted.go b/internal/service/cloudapi/vins/data_source_vins_list_deleted.go index ce55664..ad81f9b 100644 --- a/internal/service/cloudapi/vins/data_source_vins_list_deleted.go +++ b/internal/service/cloudapi/vins/data_source_vins_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsListDeletedRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/data_source_vins_nat_rule_list.go b/internal/service/cloudapi/vins/data_source_vins_nat_rule_list.go index 55b223b..eb93700 100644 --- a/internal/service/cloudapi/vins/data_source_vins_nat_rule_list.go +++ b/internal/service/cloudapi/vins/data_source_vins_nat_rule_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceVinsNatRuleListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudapi/vins/flattens.go b/internal/service/cloudapi/vins/flattens.go index 70057b4..031fc23 100644 --- a/internal/service/cloudapi/vins/flattens.go +++ b/internal/service/cloudapi/vins/flattens.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins diff --git a/internal/service/cloudapi/vins/models.go b/internal/service/cloudapi/vins/models.go index 44628ca..061b2f8 100644 --- a/internal/service/cloudapi/vins/models.go +++ b/internal/service/cloudapi/vins/models.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins diff --git a/internal/service/cloudapi/vins/resource_vins.go b/internal/service/cloudapi/vins/resource_vins.go index 902bf00..cab1842 100644 --- a/internal/service/cloudapi/vins/resource_vins.go +++ b/internal/service/cloudapi/vins/resource_vins.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,10 +38,10 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/dc" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/status" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/dc" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/status" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudapi/vins/utility_vins.go b/internal/service/cloudapi/vins/utility_vins.go index 626c613..8535f88 100644 --- a/internal/service/cloudapi/vins/utility_vins.go +++ b/internal/service/cloudapi/vins/utility_vins.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) diff --git a/internal/service/cloudapi/vins/utility_vins_audits.go b/internal/service/cloudapi/vins/utility_vins_audits.go index 65fdbe5..67af263 100644 --- a/internal/service/cloudapi/vins/utility_vins_audits.go +++ b/internal/service/cloudapi/vins/utility_vins_audits.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityVinsAuditsCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (VINSAuditsList, error) { diff --git a/internal/service/cloudapi/vins/utility_vins_ext_net_list.go b/internal/service/cloudapi/vins/utility_vins_ext_net_list.go index a09465f..e9b716f 100644 --- a/internal/service/cloudapi/vins/utility_vins_ext_net_list.go +++ b/internal/service/cloudapi/vins/utility_vins_ext_net_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityVinsExtNetListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (ExtNetList, error) { diff --git a/internal/service/cloudapi/vins/utility_vins_ip_list.go b/internal/service/cloudapi/vins/utility_vins_ip_list.go index 579f2ec..b061825 100644 --- a/internal/service/cloudapi/vins/utility_vins_ip_list.go +++ b/internal/service/cloudapi/vins/utility_vins_ip_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityVinsIpListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (IPList, error) { diff --git a/internal/service/cloudapi/vins/utility_vins_list.go b/internal/service/cloudapi/vins/utility_vins_list.go index 0befd54..6419590 100644 --- a/internal/service/cloudapi/vins/utility_vins_list.go +++ b/internal/service/cloudapi/vins/utility_vins_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudapi/vins/utility_vins_list_deleted.go b/internal/service/cloudapi/vins/utility_vins_list_deleted.go index faa0d9d..df8bd3e 100644 --- a/internal/service/cloudapi/vins/utility_vins_list_deleted.go +++ b/internal/service/cloudapi/vins/utility_vins_list_deleted.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudapi/vins/utility_vins_nat_rule_list.go b/internal/service/cloudapi/vins/utility_vins_nat_rule_list.go index 52c73f4..ebe36f4 100644 --- a/internal/service/cloudapi/vins/utility_vins_nat_rule_list.go +++ b/internal/service/cloudapi/vins/utility_vins_nat_rule_list.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -39,7 +39,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityVinsNatRuleListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (NATRuleList, error) { diff --git a/internal/service/cloudbroker/account/account_audit_ds_subresource.go b/internal/service/cloudbroker/account/account_audit_ds_subresource.go index a73d1b1..89059aa 100644 --- a/internal/service/cloudbroker/account/account_audit_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_audit_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_compute_ds_subresource.go b/internal/service/cloudbroker/account/account_compute_ds_subresource.go index 6fd01db..52103fe 100644 --- a/internal/service/cloudbroker/account/account_compute_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_compute_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_disk_ds_subresource.go b/internal/service/cloudbroker/account/account_disk_ds_subresource.go index 3201aca..c7d2f19 100644 --- a/internal/service/cloudbroker/account/account_disk_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_disk_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_ds.go b/internal/service/cloudbroker/account/account_ds.go index 95a307d..432853a 100644 --- a/internal/service/cloudbroker/account/account_ds.go +++ b/internal/service/cloudbroker/account/account_ds.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_fg_ds_subresource.go b/internal/service/cloudbroker/account/account_fg_ds_subresource.go index 2466169..0e911b3 100644 --- a/internal/service/cloudbroker/account/account_fg_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_fg_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_item_ds_subresource.go b/internal/service/cloudbroker/account/account_item_ds_subresource.go index 32430f2..5c7eab9 100644 --- a/internal/service/cloudbroker/account/account_item_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_item_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_rg_ds_subresource.go b/internal/service/cloudbroker/account/account_rg_ds_subresource.go index 4a7313a..e2c43f9 100644 --- a/internal/service/cloudbroker/account/account_rg_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_rg_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_rs.go b/internal/service/cloudbroker/account/account_rs.go index b46f6d0..f33634d 100644 --- a/internal/service/cloudbroker/account/account_rs.go +++ b/internal/service/cloudbroker/account/account_rs.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/account_vins_ds_subresource.go b/internal/service/cloudbroker/account/account_vins_ds_subresource.go index 825b6e4..2dba835 100644 --- a/internal/service/cloudbroker/account/account_vins_ds_subresource.go +++ b/internal/service/cloudbroker/account/account_vins_ds_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/api.go b/internal/service/cloudbroker/account/api.go index 13fa39b..3c102e9 100644 --- a/internal/service/cloudbroker/account/api.go +++ b/internal/service/cloudbroker/account/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/data_source_account.go b/internal/service/cloudbroker/account/data_source_account.go index c63bae7..0bf0288 100644 --- a/internal/service/cloudbroker/account/data_source_account.go +++ b/internal/service/cloudbroker/account/data_source_account.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,8 +37,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func dataSourceAccountRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/account/data_source_account_audits_list.go b/internal/service/cloudbroker/account/data_source_account_audits_list.go index 2bd2c9e..4b72a77 100644 --- a/internal/service/cloudbroker/account/data_source_account_audits_list.go +++ b/internal/service/cloudbroker/account/data_source_account_audits_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountAuditsList(aal AccountAuditsList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_computes_list.go b/internal/service/cloudbroker/account/data_source_account_computes_list.go index 79c5545..ae5372c 100644 --- a/internal/service/cloudbroker/account/data_source_account_computes_list.go +++ b/internal/service/cloudbroker/account/data_source_account_computes_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountComputesList(acl AccountComputesList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_deleted_list.go b/internal/service/cloudbroker/account/data_source_account_deleted_list.go index 6ab06a3..01ed41b 100644 --- a/internal/service/cloudbroker/account/data_source_account_deleted_list.go +++ b/internal/service/cloudbroker/account/data_source_account_deleted_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceAccountDeletedListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/account/data_source_account_disks_list.go b/internal/service/cloudbroker/account/data_source_account_disks_list.go index bc0bfed..f29e552 100644 --- a/internal/service/cloudbroker/account/data_source_account_disks_list.go +++ b/internal/service/cloudbroker/account/data_source_account_disks_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -36,7 +36,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountDisksList(adl AccountDisksList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_flipgroups_list.go b/internal/service/cloudbroker/account/data_source_account_flipgroups_list.go index 5eeb0bc..ce3af76 100644 --- a/internal/service/cloudbroker/account/data_source_account_flipgroups_list.go +++ b/internal/service/cloudbroker/account/data_source_account_flipgroups_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountFlipGroupsList(afgl AccountFlipGroupsList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_list.go b/internal/service/cloudbroker/account/data_source_account_list.go index acbbeee..13c05f4 100644 --- a/internal/service/cloudbroker/account/data_source_account_list.go +++ b/internal/service/cloudbroker/account/data_source_account_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,8 +37,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func flattenRgAcl(rgAcls []AccountAclRecord) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_rg_list.go b/internal/service/cloudbroker/account/data_source_account_rg_list.go index 6d16c6f..31d4499 100644 --- a/internal/service/cloudbroker/account/data_source_account_rg_list.go +++ b/internal/service/cloudbroker/account/data_source_account_rg_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountRGList(argl AccountRGList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/data_source_account_vins_list.go b/internal/service/cloudbroker/account/data_source_account_vins_list.go index 0e5222d..960c636 100644 --- a/internal/service/cloudbroker/account/data_source_account_vins_list.go +++ b/internal/service/cloudbroker/account/data_source_account_vins_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenAccountVinsList(avl AccountVinsList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/account/models.go b/internal/service/cloudbroker/account/models.go index 15bd7f8..1c45d74 100644 --- a/internal/service/cloudbroker/account/models.go +++ b/internal/service/cloudbroker/account/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account diff --git a/internal/service/cloudbroker/account/resource_account.go b/internal/service/cloudbroker/account/resource_account.go index fe79f16..9d4ddfb 100644 --- a/internal/service/cloudbroker/account/resource_account.go +++ b/internal/service/cloudbroker/account/resource_account.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -39,9 +39,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/account/utility_account.go b/internal/service/cloudbroker/account/utility_account.go index fa45fa5..0f3569d 100644 --- a/internal/service/cloudbroker/account/utility_account.go +++ b/internal/service/cloudbroker/account/utility_account.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_audits_list.go b/internal/service/cloudbroker/account/utility_account_audits_list.go index 1dcaf0c..7c9e8a5 100644 --- a/internal/service/cloudbroker/account/utility_account_audits_list.go +++ b/internal/service/cloudbroker/account/utility_account_audits_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_computes_list.go b/internal/service/cloudbroker/account/utility_account_computes_list.go index aacae02..000d723 100644 --- a/internal/service/cloudbroker/account/utility_account_computes_list.go +++ b/internal/service/cloudbroker/account/utility_account_computes_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_deleted_list.go b/internal/service/cloudbroker/account/utility_account_deleted_list.go index 91ef197..529cc81 100644 --- a/internal/service/cloudbroker/account/utility_account_deleted_list.go +++ b/internal/service/cloudbroker/account/utility_account_deleted_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_disks_list.go b/internal/service/cloudbroker/account/utility_account_disks_list.go index cceddb4..acf90c2 100644 --- a/internal/service/cloudbroker/account/utility_account_disks_list.go +++ b/internal/service/cloudbroker/account/utility_account_disks_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_flip_groups.go b/internal/service/cloudbroker/account/utility_account_flip_groups.go index 84a1c4e..254aa0a 100644 --- a/internal/service/cloudbroker/account/utility_account_flip_groups.go +++ b/internal/service/cloudbroker/account/utility_account_flip_groups.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_list.go b/internal/service/cloudbroker/account/utility_account_list.go index bedecac..8baefc1 100644 --- a/internal/service/cloudbroker/account/utility_account_list.go +++ b/internal/service/cloudbroker/account/utility_account_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_rg_list.go b/internal/service/cloudbroker/account/utility_account_rg_list.go index e00223d..f3822a9 100644 --- a/internal/service/cloudbroker/account/utility_account_rg_list.go +++ b/internal/service/cloudbroker/account/utility_account_rg_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/account/utility_account_vins_list.go b/internal/service/cloudbroker/account/utility_account_vins_list.go index ab57a6b..4c3915e 100644 --- a/internal/service/cloudbroker/account/utility_account_vins_list.go +++ b/internal/service/cloudbroker/account/utility_account_vins_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package account @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/disks/api.go b/internal/service/cloudbroker/disks/api.go index 19d772f..37acf8d 100644 --- a/internal/service/cloudbroker/disks/api.go +++ b/internal/service/cloudbroker/disks/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks diff --git a/internal/service/cloudbroker/disks/data_source_disk.go b/internal/service/cloudbroker/disks/data_source_disk.go index 89cf836..38419ec 100644 --- a/internal/service/cloudbroker/disks/data_source_disk.go +++ b/internal/service/cloudbroker/disks/data_source_disk.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( // "net/url" "github.com/google/uuid" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/disks/data_source_disk_list.go b/internal/service/cloudbroker/disks/data_source_disk_list.go index 2d5b2df..f40a0da 100644 --- a/internal/service/cloudbroker/disks/data_source_disk_list.go +++ b/internal/service/cloudbroker/disks/data_source_disk_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenIOTune(iot IOTune) []map[string]interface{} { diff --git a/internal/service/cloudbroker/disks/models.go b/internal/service/cloudbroker/disks/models.go index 90a1cb3..84e0cec 100644 --- a/internal/service/cloudbroker/disks/models.go +++ b/internal/service/cloudbroker/disks/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks diff --git a/internal/service/cloudbroker/disks/resource_disk.go b/internal/service/cloudbroker/disks/resource_disk.go index b03ee35..418ce5a 100644 --- a/internal/service/cloudbroker/disks/resource_disk.go +++ b/internal/service/cloudbroker/disks/resource_disk.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -39,8 +39,8 @@ import ( "strconv" "strings" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudbroker/disks/utility_disk.go b/internal/service/cloudbroker/disks/utility_disk.go index 0464724..2bce9e1 100644 --- a/internal/service/cloudbroker/disks/utility_disk.go +++ b/internal/service/cloudbroker/disks/utility_disk.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/disks/utility_disk_list.go b/internal/service/cloudbroker/disks/utility_disk_list.go index 264fca3..fbb4296 100644 --- a/internal/service/cloudbroker/disks/utility_disk_list.go +++ b/internal/service/cloudbroker/disks/utility_disk_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package disks @@ -38,7 +38,7 @@ import ( "strconv" "strings" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/grid/api.go b/internal/service/cloudbroker/grid/api.go index 7820d4e..17184f7 100644 --- a/internal/service/cloudbroker/grid/api.go +++ b/internal/service/cloudbroker/grid/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid diff --git a/internal/service/cloudbroker/grid/data_source_grid.go b/internal/service/cloudbroker/grid/data_source_grid.go index cb3092b..d871470 100644 --- a/internal/service/cloudbroker/grid/data_source_grid.go +++ b/internal/service/cloudbroker/grid/data_source_grid.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid @@ -37,7 +37,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenGrid(d *schema.ResourceData, grid *Grid) { diff --git a/internal/service/cloudbroker/grid/data_source_grid_list.go b/internal/service/cloudbroker/grid/data_source_grid_list.go index 56f489e..5a1b37c 100644 --- a/internal/service/cloudbroker/grid/data_source_grid_list.go +++ b/internal/service/cloudbroker/grid/data_source_grid_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenGridList(gl GridList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/grid/models.go b/internal/service/cloudbroker/grid/models.go index 462c658..119df57 100644 --- a/internal/service/cloudbroker/grid/models.go +++ b/internal/service/cloudbroker/grid/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid diff --git a/internal/service/cloudbroker/grid/utility_grid.go b/internal/service/cloudbroker/grid/utility_grid.go index 9b58009..01109d6 100644 --- a/internal/service/cloudbroker/grid/utility_grid.go +++ b/internal/service/cloudbroker/grid/utility_grid.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/grid/utility_grid_list.go b/internal/service/cloudbroker/grid/utility_grid_list.go index d9483ef..9654fcd 100644 --- a/internal/service/cloudbroker/grid/utility_grid_list.go +++ b/internal/service/cloudbroker/grid/utility_grid_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package grid @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/image/api.go b/internal/service/cloudbroker/image/api.go index 16e870d..1de91be 100644 --- a/internal/service/cloudbroker/image/api.go +++ b/internal/service/cloudbroker/image/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudbroker/image/data_source_image.go b/internal/service/cloudbroker/image/data_source_image.go index 11fc6dd..7776f07 100644 --- a/internal/service/cloudbroker/image/data_source_image.go +++ b/internal/service/cloudbroker/image/data_source_image.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -37,8 +37,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func flattenImage(d *schema.ResourceData, image *Image) { diff --git a/internal/service/cloudbroker/image/data_source_image_list.go b/internal/service/cloudbroker/image/data_source_image_list.go index cd0e82f..0142f4e 100644 --- a/internal/service/cloudbroker/image/data_source_image_list.go +++ b/internal/service/cloudbroker/image/data_source_image_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenImageList(il ImageList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/image/data_source_image_list_stacks.go b/internal/service/cloudbroker/image/data_source_image_list_stacks.go index 42939df..2d91218 100644 --- a/internal/service/cloudbroker/image/data_source_image_list_stacks.go +++ b/internal/service/cloudbroker/image/data_source_image_list_stacks.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenImageListStacks(_ *schema.ResourceData, stack ImageListStacks) []map[string]interface{} { diff --git a/internal/service/cloudbroker/image/models.go b/internal/service/cloudbroker/image/models.go index 3d2b9cc..60733f4 100644 --- a/internal/service/cloudbroker/image/models.go +++ b/internal/service/cloudbroker/image/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image diff --git a/internal/service/cloudbroker/image/resource_cdrom_image.go b/internal/service/cloudbroker/image/resource_cdrom_image.go index 11d2db3..96ff5dc 100644 --- a/internal/service/cloudbroker/image/resource_cdrom_image.go +++ b/internal/service/cloudbroker/image/resource_cdrom_image.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -38,8 +38,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/image/resource_delete_images.go b/internal/service/cloudbroker/image/resource_delete_images.go index b5c58ce..ebca61e 100644 --- a/internal/service/cloudbroker/image/resource_delete_images.go +++ b/internal/service/cloudbroker/image/resource_delete_images.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -39,8 +39,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/image/resource_image.go b/internal/service/cloudbroker/image/resource_image.go index 379e8be..cc06c28 100644 --- a/internal/service/cloudbroker/image/resource_image.go +++ b/internal/service/cloudbroker/image/resource_image.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -39,9 +39,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/image/resource_virtual_image.go b/internal/service/cloudbroker/image/resource_virtual_image.go index 30ae2bf..d7a43e0 100644 --- a/internal/service/cloudbroker/image/resource_virtual_image.go +++ b/internal/service/cloudbroker/image/resource_virtual_image.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -38,8 +38,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/image/utility_image.go b/internal/service/cloudbroker/image/utility_image.go index 28886aa..beca9ae 100644 --- a/internal/service/cloudbroker/image/utility_image.go +++ b/internal/service/cloudbroker/image/utility_image.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -40,7 +40,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityImageCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*Image, error) { diff --git a/internal/service/cloudbroker/image/utility_image_list.go b/internal/service/cloudbroker/image/utility_image_list.go index b4dfaca..49407eb 100644 --- a/internal/service/cloudbroker/image/utility_image_list.go +++ b/internal/service/cloudbroker/image/utility_image_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/image/utility_image_list_stacks.go b/internal/service/cloudbroker/image/utility_image_list_stacks.go index 2fa16fd..4dd0e9a 100644 --- a/internal/service/cloudbroker/image/utility_image_list_stacks.go +++ b/internal/service/cloudbroker/image/utility_image_list_stacks.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package image @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/k8s/api.go b/internal/service/cloudbroker/k8s/api.go index 765c7c4..b075608 100644 --- a/internal/service/cloudbroker/k8s/api.go +++ b/internal/service/cloudbroker/k8s/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudbroker/k8s/models.go b/internal/service/cloudbroker/k8s/models.go index 2813e9a..0bf70ff 100644 --- a/internal/service/cloudbroker/k8s/models.go +++ b/internal/service/cloudbroker/k8s/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudbroker/k8s/node_subresource.go b/internal/service/cloudbroker/k8s/node_subresource.go index 4cbba19..7f88fdf 100644 --- a/internal/service/cloudbroker/k8s/node_subresource.go +++ b/internal/service/cloudbroker/k8s/node_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s diff --git a/internal/service/cloudbroker/k8s/resource_k8s.go b/internal/service/cloudbroker/k8s/resource_k8s.go index 725215b..f36f71e 100644 --- a/internal/service/cloudbroker/k8s/resource_k8s.go +++ b/internal/service/cloudbroker/k8s/resource_k8s.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -42,8 +42,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/k8s/resource_k8s_wg.go b/internal/service/cloudbroker/k8s/resource_k8s_wg.go index b8bfad9..97466b5 100644 --- a/internal/service/cloudbroker/k8s/resource_k8s_wg.go +++ b/internal/service/cloudbroker/k8s/resource_k8s_wg.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -38,8 +38,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/k8s/utility_k8s.go b/internal/service/cloudbroker/k8s/utility_k8s.go index 119daca..e86d36a 100644 --- a/internal/service/cloudbroker/k8s/utility_k8s.go +++ b/internal/service/cloudbroker/k8s/utility_k8s.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -37,7 +37,7 @@ import ( "net/url" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityK8sCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*K8sRecord, error) { diff --git a/internal/service/cloudbroker/k8s/utility_k8s_wg.go b/internal/service/cloudbroker/k8s/utility_k8s_wg.go index 2e94044..0b1f1f2 100644 --- a/internal/service/cloudbroker/k8s/utility_k8s_wg.go +++ b/internal/service/cloudbroker/k8s/utility_k8s_wg.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package k8s @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityK8sWgCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*K8sNodeRecord, error) { diff --git a/internal/service/cloudbroker/kvmvm/api.go b/internal/service/cloudbroker/kvmvm/api.go index 5cf1bab..f7d4857 100644 --- a/internal/service/cloudbroker/kvmvm/api.go +++ b/internal/service/cloudbroker/kvmvm/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudbroker/kvmvm/data_source_compute.go b/internal/service/cloudbroker/kvmvm/data_source_compute.go index 7375790..05c77db 100644 --- a/internal/service/cloudbroker/kvmvm/data_source_compute.go +++ b/internal/service/cloudbroker/kvmvm/data_source_compute.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( // "net/url" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudbroker/kvmvm/models.go b/internal/service/cloudbroker/kvmvm/models.go index ff2f1ec..ecbe06e 100644 --- a/internal/service/cloudbroker/kvmvm/models.go +++ b/internal/service/cloudbroker/kvmvm/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudbroker/kvmvm/network_subresource.go b/internal/service/cloudbroker/kvmvm/network_subresource.go index 35bb732..7068e7f 100644 --- a/internal/service/cloudbroker/kvmvm/network_subresource.go +++ b/internal/service/cloudbroker/kvmvm/network_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -35,7 +35,7 @@ import ( "bytes" "hash/fnv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/statefuncs" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" log "github.com/sirupsen/logrus" "sort" diff --git a/internal/service/cloudbroker/kvmvm/osusers_subresource.go b/internal/service/cloudbroker/kvmvm/osusers_subresource.go index d5750e4..99f33ab 100644 --- a/internal/service/cloudbroker/kvmvm/osusers_subresource.go +++ b/internal/service/cloudbroker/kvmvm/osusers_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm diff --git a/internal/service/cloudbroker/kvmvm/resource_compute.go b/internal/service/cloudbroker/kvmvm/resource_compute.go index 3c57354..cb25b95 100644 --- a/internal/service/cloudbroker/kvmvm/resource_compute.go +++ b/internal/service/cloudbroker/kvmvm/resource_compute.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -37,9 +37,9 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/statefuncs" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/statefuncs" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudbroker/kvmvm/utility_compute.go b/internal/service/cloudbroker/kvmvm/utility_compute.go index 0f9140d..3a059eb 100644 --- a/internal/service/cloudbroker/kvmvm/utility_compute.go +++ b/internal/service/cloudbroker/kvmvm/utility_compute.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package kvmvm @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/pcidevice/api.go b/internal/service/cloudbroker/pcidevice/api.go index f000c25..7b66fe2 100644 --- a/internal/service/cloudbroker/pcidevice/api.go +++ b/internal/service/cloudbroker/pcidevice/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice diff --git a/internal/service/cloudbroker/pcidevice/data_source_pcidevice.go b/internal/service/cloudbroker/pcidevice/data_source_pcidevice.go index 4e8b102..abb822b 100644 --- a/internal/service/cloudbroker/pcidevice/data_source_pcidevice.go +++ b/internal/service/cloudbroker/pcidevice/data_source_pcidevice.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice @@ -37,8 +37,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func dataSourcePcideviceRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/pcidevice/data_source_pcidevice_list.go b/internal/service/cloudbroker/pcidevice/data_source_pcidevice_list.go index 53917ee..fdf1e27 100644 --- a/internal/service/cloudbroker/pcidevice/data_source_pcidevice_list.go +++ b/internal/service/cloudbroker/pcidevice/data_source_pcidevice_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice @@ -37,8 +37,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func flattenPcideviceList(pl PcideviceList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/pcidevice/models.go b/internal/service/cloudbroker/pcidevice/models.go index 4aa0c29..e33c772 100644 --- a/internal/service/cloudbroker/pcidevice/models.go +++ b/internal/service/cloudbroker/pcidevice/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice diff --git a/internal/service/cloudbroker/pcidevice/resource_pcidevice.go b/internal/service/cloudbroker/pcidevice/resource_pcidevice.go index 3ba7aab..e5b99f2 100644 --- a/internal/service/cloudbroker/pcidevice/resource_pcidevice.go +++ b/internal/service/cloudbroker/pcidevice/resource_pcidevice.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice @@ -38,9 +38,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/pcidevice/utility_pcidevice.go b/internal/service/cloudbroker/pcidevice/utility_pcidevice.go index be54504..9e311e0 100644 --- a/internal/service/cloudbroker/pcidevice/utility_pcidevice.go +++ b/internal/service/cloudbroker/pcidevice/utility_pcidevice.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice diff --git a/internal/service/cloudbroker/pcidevice/utility_pcidevice_list.go b/internal/service/cloudbroker/pcidevice/utility_pcidevice_list.go index 389ac6d..927dd1d 100644 --- a/internal/service/cloudbroker/pcidevice/utility_pcidevice_list.go +++ b/internal/service/cloudbroker/pcidevice/utility_pcidevice_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pcidevice @@ -36,7 +36,7 @@ import ( "encoding/json" "net/url" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityPcideviceListCheckPresence(ctx context.Context, m interface{}) (PcideviceList, error) { diff --git a/internal/service/cloudbroker/pfw/api.go b/internal/service/cloudbroker/pfw/api.go index 3f60b99..5c2a38e 100644 --- a/internal/service/cloudbroker/pfw/api.go +++ b/internal/service/cloudbroker/pfw/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw diff --git a/internal/service/cloudbroker/pfw/models.go b/internal/service/cloudbroker/pfw/models.go index 0701acc..30f643d 100644 --- a/internal/service/cloudbroker/pfw/models.go +++ b/internal/service/cloudbroker/pfw/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw diff --git a/internal/service/cloudbroker/pfw/resource_pfw.go b/internal/service/cloudbroker/pfw/resource_pfw.go index c3aaa69..cd03c79 100644 --- a/internal/service/cloudbroker/pfw/resource_pfw.go +++ b/internal/service/cloudbroker/pfw/resource_pfw.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw @@ -40,8 +40,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/pfw/utility_pfw.go b/internal/service/cloudbroker/pfw/utility_pfw.go index 0e8e095..a9bb4bf 100644 --- a/internal/service/cloudbroker/pfw/utility_pfw.go +++ b/internal/service/cloudbroker/pfw/utility_pfw.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package pfw @@ -39,7 +39,7 @@ import ( "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityPfwCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*PfwRecord, error) { diff --git a/internal/service/cloudbroker/rg/api.go b/internal/service/cloudbroker/rg/api.go index 01df371..6248810 100644 --- a/internal/service/cloudbroker/rg/api.go +++ b/internal/service/cloudbroker/rg/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudbroker/rg/data_source_rg.go b/internal/service/cloudbroker/rg/data_source_rg.go index ab26d8e..d977539 100644 --- a/internal/service/cloudbroker/rg/data_source_rg.go +++ b/internal/service/cloudbroker/rg/data_source_rg.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -36,7 +36,7 @@ import ( "encoding/json" "fmt" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" log "github.com/sirupsen/logrus" // "net/url" diff --git a/internal/service/cloudbroker/rg/data_source_rg_list.go b/internal/service/cloudbroker/rg/data_source_rg_list.go index fb57154..2210a4d 100644 --- a/internal/service/cloudbroker/rg/data_source_rg_list.go +++ b/internal/service/cloudbroker/rg/data_source_rg_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenRgList(rgl ResgroupListResp) []map[string]interface{} { diff --git a/internal/service/cloudbroker/rg/models.go b/internal/service/cloudbroker/rg/models.go index de93b38..d97a388 100644 --- a/internal/service/cloudbroker/rg/models.go +++ b/internal/service/cloudbroker/rg/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudbroker/rg/quota_subresource.go b/internal/service/cloudbroker/rg/quota_subresource.go index 548b6bc..a7cd202 100644 --- a/internal/service/cloudbroker/rg/quota_subresource.go +++ b/internal/service/cloudbroker/rg/quota_subresource.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg diff --git a/internal/service/cloudbroker/rg/resource_rg.go b/internal/service/cloudbroker/rg/resource_rg.go index 240769d..e938087 100644 --- a/internal/service/cloudbroker/rg/resource_rg.go +++ b/internal/service/cloudbroker/rg/resource_rg.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -37,9 +37,9 @@ import ( "fmt" "net/url" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/location" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/location" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudbroker/rg/utility_rg.go b/internal/service/cloudbroker/rg/utility_rg.go index b3ef9ed..9057bf0 100644 --- a/internal/service/cloudbroker/rg/utility_rg.go +++ b/internal/service/cloudbroker/rg/utility_rg.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/rg/utility_rg_list.go b/internal/service/cloudbroker/rg/utility_rg_list.go index b264db6..c6067eb 100644 --- a/internal/service/cloudbroker/rg/utility_rg_list.go +++ b/internal/service/cloudbroker/rg/utility_rg_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package rg @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/sep/api.go b/internal/service/cloudbroker/sep/api.go index e4a1c52..49067dd 100644 --- a/internal/service/cloudbroker/sep/api.go +++ b/internal/service/cloudbroker/sep/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep diff --git a/internal/service/cloudbroker/sep/data_source_sep.go b/internal/service/cloudbroker/sep/data_source_sep.go index 798bf3b..049a773 100644 --- a/internal/service/cloudbroker/sep/data_source_sep.go +++ b/internal/service/cloudbroker/sep/data_source_sep.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -38,8 +38,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func dataSourceSepRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/sep/data_source_sep_config.go b/internal/service/cloudbroker/sep/data_source_sep_config.go index 9dcca7b..519c3c4 100644 --- a/internal/service/cloudbroker/sep/data_source_sep_config.go +++ b/internal/service/cloudbroker/sep/data_source_sep_config.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceSepConfigRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/sep/data_source_sep_consumption.go b/internal/service/cloudbroker/sep/data_source_sep_consumption.go index 912473d..ccc6c7c 100644 --- a/internal/service/cloudbroker/sep/data_source_sep_consumption.go +++ b/internal/service/cloudbroker/sep/data_source_sep_consumption.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceSepConsumptionRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/sep/data_source_sep_disk_list.go b/internal/service/cloudbroker/sep/data_source_sep_disk_list.go index 7241d92..6c681ea 100644 --- a/internal/service/cloudbroker/sep/data_source_sep_disk_list.go +++ b/internal/service/cloudbroker/sep/data_source_sep_disk_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceSepDiskListRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/sep/data_source_sep_list.go b/internal/service/cloudbroker/sep/data_source_sep_list.go index b5adf55..b240856 100644 --- a/internal/service/cloudbroker/sep/data_source_sep_list.go +++ b/internal/service/cloudbroker/sep/data_source_sep_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -38,8 +38,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" ) func flattenSepList(sl SepList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/sep/data_source_sep_pool.go b/internal/service/cloudbroker/sep/data_source_sep_pool.go index a8d1148..0dba6ce 100644 --- a/internal/service/cloudbroker/sep/data_source_sep_pool.go +++ b/internal/service/cloudbroker/sep/data_source_sep_pool.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -38,7 +38,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func dataSourceSepPoolRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { diff --git a/internal/service/cloudbroker/sep/models.go b/internal/service/cloudbroker/sep/models.go index 803493e..346aae2 100644 --- a/internal/service/cloudbroker/sep/models.go +++ b/internal/service/cloudbroker/sep/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep diff --git a/internal/service/cloudbroker/sep/resource_sep.go b/internal/service/cloudbroker/sep/resource_sep.go index bd9a92c..2be537c 100644 --- a/internal/service/cloudbroker/sep/resource_sep.go +++ b/internal/service/cloudbroker/sep/resource_sep.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -40,9 +40,9 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/flattens" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/flattens" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/sep/resource_sep_config.go b/internal/service/cloudbroker/sep/resource_sep_config.go index 18e5e9f..bf7e64b 100644 --- a/internal/service/cloudbroker/sep/resource_sep_config.go +++ b/internal/service/cloudbroker/sep/resource_sep_config.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -40,8 +40,8 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/sep/utility_sep.go b/internal/service/cloudbroker/sep/utility_sep.go index 47de088..66f3d63 100644 --- a/internal/service/cloudbroker/sep/utility_sep.go +++ b/internal/service/cloudbroker/sep/utility_sep.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/sep/utility_sep_config.go b/internal/service/cloudbroker/sep/utility_sep_config.go index 8113fb8..ca9260b 100644 --- a/internal/service/cloudbroker/sep/utility_sep_config.go +++ b/internal/service/cloudbroker/sep/utility_sep_config.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/sep/utility_sep_consumption.go b/internal/service/cloudbroker/sep/utility_sep_consumption.go index c9744fe..ad1cc23 100644 --- a/internal/service/cloudbroker/sep/utility_sep_consumption.go +++ b/internal/service/cloudbroker/sep/utility_sep_consumption.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilitySepConsumptionCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*SepConsumption, error) { diff --git a/internal/service/cloudbroker/sep/utility_sep_disk_list.go b/internal/service/cloudbroker/sep/utility_sep_disk_list.go index a718515..8e30a74 100644 --- a/internal/service/cloudbroker/sep/utility_sep_disk_list.go +++ b/internal/service/cloudbroker/sep/utility_sep_disk_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/sep/utility_sep_list.go b/internal/service/cloudbroker/sep/utility_sep_list.go index d696c5e..44da568 100644 --- a/internal/service/cloudbroker/sep/utility_sep_list.go +++ b/internal/service/cloudbroker/sep/utility_sep_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/sep/utility_sep_pool.go b/internal/service/cloudbroker/sep/utility_sep_pool.go index dc1793b..2677bbd 100644 --- a/internal/service/cloudbroker/sep/utility_sep_pool.go +++ b/internal/service/cloudbroker/sep/utility_sep_pool.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package sep @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/snapshot/api.go b/internal/service/cloudbroker/snapshot/api.go index 5cb37ea..e311a8f 100644 --- a/internal/service/cloudbroker/snapshot/api.go +++ b/internal/service/cloudbroker/snapshot/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudbroker/snapshot/data_source_snapshot_list.go b/internal/service/cloudbroker/snapshot/data_source_snapshot_list.go index f5d4ca3..a2c95fd 100644 --- a/internal/service/cloudbroker/snapshot/data_source_snapshot_list.go +++ b/internal/service/cloudbroker/snapshot/data_source_snapshot_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenSnapshotList(gl SnapshotList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/snapshot/models.go b/internal/service/cloudbroker/snapshot/models.go index e09b85a..0d76892 100644 --- a/internal/service/cloudbroker/snapshot/models.go +++ b/internal/service/cloudbroker/snapshot/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudbroker/snapshot/resource_snapshot.go b/internal/service/cloudbroker/snapshot/resource_snapshot.go index 528e7d7..bdce7cf 100644 --- a/internal/service/cloudbroker/snapshot/resource_snapshot.go +++ b/internal/service/cloudbroker/snapshot/resource_snapshot.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -39,8 +39,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" ) diff --git a/internal/service/cloudbroker/snapshot/utility_snapshot.go b/internal/service/cloudbroker/snapshot/utility_snapshot.go index 5a07d38..663b40b 100644 --- a/internal/service/cloudbroker/snapshot/utility_snapshot.go +++ b/internal/service/cloudbroker/snapshot/utility_snapshot.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot diff --git a/internal/service/cloudbroker/snapshot/utility_snapshot_list.go b/internal/service/cloudbroker/snapshot/utility_snapshot_list.go index c695c38..e3aace0 100644 --- a/internal/service/cloudbroker/snapshot/utility_snapshot_list.go +++ b/internal/service/cloudbroker/snapshot/utility_snapshot_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package snapshot @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilitySnapshotListCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (SnapshotList, error) { diff --git a/internal/service/cloudbroker/vgpu/api.go b/internal/service/cloudbroker/vgpu/api.go index d6d21ba..df28688 100644 --- a/internal/service/cloudbroker/vgpu/api.go +++ b/internal/service/cloudbroker/vgpu/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vgpu diff --git a/internal/service/cloudbroker/vgpu/data_source_vgpu.go b/internal/service/cloudbroker/vgpu/data_source_vgpu.go index 32e3514..342e116 100644 --- a/internal/service/cloudbroker/vgpu/data_source_vgpu.go +++ b/internal/service/cloudbroker/vgpu/data_source_vgpu.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vgpu diff --git a/internal/service/cloudbroker/vgpu/models.go b/internal/service/cloudbroker/vgpu/models.go index 59719f8..acd361d 100644 --- a/internal/service/cloudbroker/vgpu/models.go +++ b/internal/service/cloudbroker/vgpu/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vgpu diff --git a/internal/service/cloudbroker/vgpu/utility_vgpu.go b/internal/service/cloudbroker/vgpu/utility_vgpu.go index ba25354..e028bd1 100644 --- a/internal/service/cloudbroker/vgpu/utility_vgpu.go +++ b/internal/service/cloudbroker/vgpu/utility_vgpu.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vgpu @@ -38,7 +38,7 @@ import ( "strconv" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" ) func utilityVGPUCheckPresence(ctx context.Context, d *schema.ResourceData, m interface{}) (*VGPU, error) { diff --git a/internal/service/cloudbroker/vins/api.go b/internal/service/cloudbroker/vins/api.go index 818fd21..79d9bcf 100644 --- a/internal/service/cloudbroker/vins/api.go +++ b/internal/service/cloudbroker/vins/api.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins diff --git a/internal/service/cloudbroker/vins/data_source_vins.go b/internal/service/cloudbroker/vins/data_source_vins.go index 0f93974..48b7e90 100644 --- a/internal/service/cloudbroker/vins/data_source_vins.go +++ b/internal/service/cloudbroker/vins/data_source_vins.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -36,7 +36,7 @@ import ( "encoding/json" "fmt" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" log "github.com/sirupsen/logrus" // "net/url" diff --git a/internal/service/cloudbroker/vins/data_source_vins_list.go b/internal/service/cloudbroker/vins/data_source_vins_list.go index 8f2bb95..cc6f9a8 100644 --- a/internal/service/cloudbroker/vins/data_source_vins_list.go +++ b/internal/service/cloudbroker/vins/data_source_vins_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -37,7 +37,7 @@ import ( "github.com/google/uuid" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" ) func flattenVinsList(vl VinsList) []map[string]interface{} { diff --git a/internal/service/cloudbroker/vins/models.go b/internal/service/cloudbroker/vins/models.go index f32032b..9854200 100644 --- a/internal/service/cloudbroker/vins/models.go +++ b/internal/service/cloudbroker/vins/models.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins diff --git a/internal/service/cloudbroker/vins/resource_vins.go b/internal/service/cloudbroker/vins/resource_vins.go index c798e8e..a5252d5 100644 --- a/internal/service/cloudbroker/vins/resource_vins.go +++ b/internal/service/cloudbroker/vins/resource_vins.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -37,8 +37,8 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/constants" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/constants" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" diff --git a/internal/service/cloudbroker/vins/utility_vins.go b/internal/service/cloudbroker/vins/utility_vins.go index 4d2978c..945812d 100644 --- a/internal/service/cloudbroker/vins/utility_vins.go +++ b/internal/service/cloudbroker/vins/utility_vins.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -38,7 +38,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/service/cloudbroker/vins/utility_vins_list.go b/internal/service/cloudbroker/vins/utility_vins_list.go index 60a3c99..4472bc0 100644 --- a/internal/service/cloudbroker/vins/utility_vins_list.go +++ b/internal/service/cloudbroker/vins/utility_vins_list.go @@ -21,12 +21,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package vins @@ -37,7 +37,7 @@ import ( "net/url" "strconv" - "repos.digitalenergy.online/BASIS/terraform-provider-decort/internal/controller" + "repository.basistech.ru/BASIS/terraform-provider-decort/internal/controller" log "github.com/sirupsen/logrus" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" diff --git a/internal/status/status.go b/internal/status/status.go index c3fa63d..31a0ff4 100644 --- a/internal/status/status.go +++ b/internal/status/status.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package status diff --git a/internal/techstatus/techstatus.go b/internal/techstatus/techstatus.go index 00b232b..c241231 100644 --- a/internal/techstatus/techstatus.go +++ b/internal/techstatus/techstatus.go @@ -22,12 +22,12 @@ limitations under the License. Terraform DECORT provider - manage resources provided by DECORT (Digital Energy Cloud Orchestration Technology) with Terraform by Hashicorp. -Source code: https://repos.digitalenergy.online/BASIS/terraform-provider-decort +Source code: https://repository.basistech.ru/BASIS/terraform-provider-decort Please see README.md to learn where to place source code so that it builds seamlessly. -Documentation: https://repos.digitalenergy.online/BASIS/terraform-provider-decort/wiki +Documentation: https://repository.basistech.ru/BASIS/terraform-provider-decort/wiki */ package techstatus