File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ alloydb: fix permadiff on `automated_backup_policy.weekly_schedule` of `google_alloydb_cluster`
3
+ ```
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ func ResourceAlloydbCluster() *schema.Resource {
58
58
},
59
59
"automated_backup_policy" : {
60
60
Type : schema .TypeList ,
61
+ Computed : true ,
61
62
Optional : true ,
62
63
Description : `The automated backup policy for this cluster.
63
64
@@ -67,7 +68,8 @@ If no policy is provided then the default policy will be used. The default polic
67
68
Schema : map [string ]* schema.Schema {
68
69
"weekly_schedule" : {
69
70
Type : schema .TypeList ,
70
- Required : true ,
71
+ Computed : true ,
72
+ Optional : true ,
71
73
ForceNew : true ,
72
74
Description : `Weekly schedule for the Backup.` ,
73
75
MaxItems : 1 ,
You can’t perform that action at this time.
0 commit comments