Skip to content

Commit 971c719

Browse files
committed
Bug fix - adding entries for fleet_software_update and globally_distributed_database
1 parent 3fdc576 commit 971c719

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

internal/provider/register_datasource.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@ import (
5656
tf_email "github.com/oracle/terraform-provider-oci/internal/service/email"
5757
tf_events "github.com/oracle/terraform-provider-oci/internal/service/events"
5858
tf_file_storage "github.com/oracle/terraform-provider-oci/internal/service/file_storage"
59+
tf_fleet_software_update "github.com/oracle/terraform-provider-oci/internal/service/fleet_software_update"
5960
tf_functions "github.com/oracle/terraform-provider-oci/internal/service/functions"
6061
tf_fusion_apps "github.com/oracle/terraform-provider-oci/internal/service/fusion_apps"
6162
tf_generative_ai "github.com/oracle/terraform-provider-oci/internal/service/generative_ai"
6263
tf_generic_artifacts_content "github.com/oracle/terraform-provider-oci/internal/service/generic_artifacts_content"
64+
tf_globally_distributed_database "github.com/oracle/terraform-provider-oci/internal/service/globally_distributed_database"
6365
tf_golden_gate "github.com/oracle/terraform-provider-oci/internal/service/golden_gate"
6466
tf_health_checks "github.com/oracle/terraform-provider-oci/internal/service/health_checks"
6567
tf_identity "github.com/oracle/terraform-provider-oci/internal/service/identity"
@@ -281,6 +283,9 @@ func init() {
281283
if common.CheckForEnabledServices("filestorage") {
282284
tf_file_storage.RegisterDatasource()
283285
}
286+
if common.CheckForEnabledServices("fleetsoftwareupdate") {
287+
tf_fleet_software_update.RegisterDatasource()
288+
}
284289
if common.CheckForEnabledServices("functions") {
285290
tf_functions.RegisterDatasource()
286291
}
@@ -293,6 +298,9 @@ func init() {
293298
if common.CheckForEnabledServices("genericartifactscontent") {
294299
tf_generic_artifacts_content.RegisterDatasource()
295300
}
301+
if common.CheckForEnabledServices("globallydistributeddatabase") {
302+
tf_globally_distributed_database.RegisterDatasource()
303+
}
296304
if common.CheckForEnabledServices("goldengate") {
297305
tf_golden_gate.RegisterDatasource()
298306
}

internal/provider/register_resource.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@ import (
5656
tf_email "github.com/oracle/terraform-provider-oci/internal/service/email"
5757
tf_events "github.com/oracle/terraform-provider-oci/internal/service/events"
5858
tf_file_storage "github.com/oracle/terraform-provider-oci/internal/service/file_storage"
59+
tf_fleet_software_update "github.com/oracle/terraform-provider-oci/internal/service/fleet_software_update"
5960
tf_functions "github.com/oracle/terraform-provider-oci/internal/service/functions"
6061
tf_fusion_apps "github.com/oracle/terraform-provider-oci/internal/service/fusion_apps"
6162
tf_generative_ai "github.com/oracle/terraform-provider-oci/internal/service/generative_ai"
6263
tf_generic_artifacts_content "github.com/oracle/terraform-provider-oci/internal/service/generic_artifacts_content"
64+
tf_globally_distributed_database "github.com/oracle/terraform-provider-oci/internal/service/globally_distributed_database"
6365
tf_golden_gate "github.com/oracle/terraform-provider-oci/internal/service/golden_gate"
6466
tf_health_checks "github.com/oracle/terraform-provider-oci/internal/service/health_checks"
6567
tf_identity "github.com/oracle/terraform-provider-oci/internal/service/identity"
@@ -281,6 +283,9 @@ func init() {
281283
if common.CheckForEnabledServices("filestorage") {
282284
tf_file_storage.RegisterResource()
283285
}
286+
if common.CheckForEnabledServices("fleetsoftwareupdate") {
287+
tf_fleet_software_update.RegisterResource()
288+
}
284289
if common.CheckForEnabledServices("functions") {
285290
tf_functions.RegisterResource()
286291
}
@@ -293,6 +298,9 @@ func init() {
293298
if common.CheckForEnabledServices("genericartifactscontent") {
294299
tf_generic_artifacts_content.RegisterResource()
295300
}
301+
if common.CheckForEnabledServices("globallydistributeddatabase") {
302+
tf_globally_distributed_database.RegisterResource()
303+
}
296304
if common.CheckForEnabledServices("goldengate") {
297305
tf_golden_gate.RegisterResource()
298306
}

0 commit comments

Comments
 (0)