Skip to content

Commit 9f4f774

Browse files
committed
Fix attributes to Computed in the data source
1 parent e0e2e15 commit 9f4f774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/service/networkfirewall/firewall_policy_data_source.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ func dataSourceFirewallPolicy() *schema.Resource {
121121
},
122122
"override": {
123123
Type: schema.TypeList,
124-
Optional: true,
124+
Computed: true,
125125
Elem: &schema.Resource{
126126
Schema: map[string]*schema.Schema{
127127
names.AttrAction: {
128128
Type: schema.TypeString,
129-
Optional: true,
129+
Computed: true,
130130
},
131131
},
132132
},

0 commit comments

Comments
 (0)