Skip to content

Commit 0813ec7

Browse files
committed
chore: temporarily remove azure connector resources
For the release, we're temporarily removing the resources `dynatrace_azure_connection` and `dynatrace_azure_connection_authentication`
1 parent 3044c89 commit 0813ec7

File tree

4 files changed

+8
-354
lines changed

4 files changed

+8
-354
lines changed

docs/resources/azure_connection.md

Lines changed: 0 additions & 205 deletions
This file was deleted.

docs/resources/azure_connection_authentication.md

Lines changed: 0 additions & 141 deletions
This file was deleted.

dynatrace/export/resource_descriptor.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,8 @@ import (
429429
openpipelineusersessionspipelines "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/openpipeline/usersessions/pipelines"
430430
openpipelineusersessionsrouting "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/openpipeline/usersessions/routing"
431431

432-
azureconnection "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/hyperscalerauthentication/connections/azure"
433-
azureconnectionauthentication "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/hyperscalerauthentication/connections/azure/authentication"
432+
//azureconnection "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/hyperscalerauthentication/connections/azure"
433+
//azureconnectionauthentication "github.com/dynatrace-oss/terraform-provider-dynatrace/dynatrace/api/builtin/hyperscalerauthentication/connections/azure/authentication"
434434
)
435435

436436
func NewResourceDescriptor[T settings.Settings](fn func(credentials *rest.Credentials) settings.CRUDService[T], dependencies ...Dependency) ResourceDescriptor {
@@ -1805,10 +1805,10 @@ var AllResources = map[ResourceType]ResourceDescriptor{
18051805
),
18061806
ResourceTypes.AutomationApproval: NewResourceDescriptor(approval.Service),
18071807

1808-
ResourceTypes.AzureConnection: NewResourceDescriptor(azureconnection.Service),
1809-
ResourceTypes.AzureConnectionAuthentication: NewResourceDescriptor(azureconnectionauthentication.Service,
1810-
Dependencies.ID(ResourceTypes.AzureConnection),
1811-
),
1808+
//ResourceTypes.AzureConnection: NewResourceDescriptor(azureconnection.Service),
1809+
//ResourceTypes.AzureConnectionAuthentication: NewResourceDescriptor(azureconnectionauthentication.Service,
1810+
// Dependencies.ID(ResourceTypes.AzureConnection),
1811+
//),
18121812
}
18131813

18141814
type ResourceExclusion struct {

provider/provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,8 +677,8 @@ func Provider() *schema.Provider {
677677
"dynatrace_openpipeline_v2_usersessions_pipelines": resources.NewGenericWithAlwaysPrintingViolationPath(export.ResourceTypes.OpenpipelineUsersessionsPipelines).Resource(),
678678
"dynatrace_openpipeline_v2_usersessions_routing": resources.NewGenericWithAlwaysPrintingViolationPath(export.ResourceTypes.OpenpipelineUsersessionsRouting).Resource(),
679679
"dynatrace_automation_approval": resources.NewGeneric(export.ResourceTypes.AutomationApproval).Resource(),
680-
"dynatrace_azure_connection": resources.NewGeneric(export.ResourceTypes.AzureConnection).Resource(),
681-
"dynatrace_azure_connection_authentication": resources.NewGeneric(export.ResourceTypes.AzureConnectionAuthentication).Resource(),
680+
//"dynatrace_azure_connection": resources.NewGeneric(export.ResourceTypes.AzureConnection).Resource(),
681+
//"dynatrace_azure_connection_authentication": resources.NewGeneric(export.ResourceTypes.AzureConnectionAuthentication).Resource(),
682682
},
683683
ConfigureContextFunc: config.ProviderConfigure,
684684
}

0 commit comments

Comments
 (0)