diff --git a/examples/data-sources/biganimal_analytics_cluster/data-source.tf b/examples/data-sources/biganimal_analytics_cluster/data-source.tf index 1ac6c615..038c78fc 100644 --- a/examples/data-sources/biganimal_analytics_cluster/data-source.tf +++ b/examples/data-sources/biganimal_analytics_cluster/data-source.tf @@ -17,6 +17,10 @@ output "backup_retention_period" { value = data.biganimal_analytics_cluster.this.backup_retention_period } +output "backup_schedule_time" { + value = data.biganimal_analytics_cluster.this.backup_schedule_time +} + output "cluster_name" { value = data.biganimal_analytics_cluster.this.cluster_name } diff --git a/examples/data-sources/biganimal_cluster/data-source.tf b/examples/data-sources/biganimal_cluster/data-source.tf index 0931e502..d7c4c47d 100644 --- a/examples/data-sources/biganimal_cluster/data-source.tf +++ b/examples/data-sources/biganimal_cluster/data-source.tf @@ -21,6 +21,10 @@ output "backup_retention_period" { value = data.biganimal_cluster.this.backup_retention_period } +output "backup_schedule_time" { + value = data.biganimal_cluster.this.backup_schedule_time +} + output "cluster_name" { value = data.biganimal_cluster.this.cluster_name } diff --git a/examples/data-sources/biganimal_faraway_replica/data-source.tf b/examples/data-sources/biganimal_faraway_replica/data-source.tf index 92d9b0af..d3ece514 100644 --- a/examples/data-sources/biganimal_faraway_replica/data-source.tf +++ b/examples/data-sources/biganimal_faraway_replica/data-source.tf @@ -29,6 +29,10 @@ output "backup_retention_period" { value = data.biganimal_faraway_replica.this.backup_retention_period } +output "backup_schedule_time" { + value = data.biganimal_faraway_replica.this.backup_schedule_time +} + output "cluster_name" { value = data.biganimal_faraway_replica.this.cluster_name } diff --git a/pkg/provider/data_source_analytics_cluster.go b/pkg/provider/data_source_analytics_cluster.go index f26057b8..9b8a7a7d 100644 --- a/pkg/provider/data_source_analytics_cluster.go +++ b/pkg/provider/data_source_analytics_cluster.go @@ -210,6 +210,7 @@ func (r *analyticsClusterDataSource) Schema(ctx context.Context, req datasource. }, }, }, + "backup_schedule_time": ResourceBackupScheduleTime, }, } } diff --git a/pkg/provider/data_source_cluster.go b/pkg/provider/data_source_cluster.go index fc876772..c9c33329 100644 --- a/pkg/provider/data_source_cluster.go +++ b/pkg/provider/data_source_cluster.go @@ -388,6 +388,7 @@ func (c *clusterDataSource) Schema(ctx context.Context, req datasource.SchemaReq MarkdownDescription: "Cluster connection service name.", Computed: true, }, + "backup_schedule_time": ResourceBackupScheduleTime, }, } } diff --git a/pkg/provider/data_source_fareplica.go b/pkg/provider/data_source_fareplica.go index d3ca9d21..6ffe2620 100644 --- a/pkg/provider/data_source_fareplica.go +++ b/pkg/provider/data_source_fareplica.go @@ -271,6 +271,7 @@ func (c *FAReplicaData) Schema(ctx context.Context, req datasource.SchemaRequest }, }, }, + "backup_schedule_time": ResourceBackupScheduleTime, }, } }