Skip to content

Commit a689f17

Browse files
committed
fix constant diff even after a successful apply
1 parent 9d49212 commit a689f17

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

internal/provider/resource_tfe_registry_module.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ func resourceTFERegistryModule() *schema.Resource {
9595
"tags": {
9696
Type: schema.TypeBool,
9797
Optional: true,
98+
Computed: true,
9899
},
99100
},
100101
},
@@ -125,11 +126,13 @@ func resourceTFERegistryModule() *schema.Resource {
125126
"test_config": {
126127
Type: schema.TypeList,
127128
Optional: true,
129+
Computed: true,
128130
Elem: &schema.Resource{
129131
Schema: map[string]*schema.Schema{
130132
"tests_enabled": {
131133
Type: schema.TypeBool,
132134
Optional: true,
135+
Computed: true,
133136
},
134137
},
135138
},

0 commit comments

Comments
 (0)