provider/rancher: Remove DiffSuppressFunc from Computed-only fields

This commit is contained in:
Radek Simko 2017-04-23 12:41:18 +02:00
parent 3954276490
commit cb2f224180
No known key found for this signature in database
GPG Key ID: 6823F3DCCE01BB19
1 changed files with 4 additions and 6 deletions

View File

@ -76,14 +76,12 @@ func resourceRancherStack() *schema.Resource {
Optional: true,
},
"rendered_docker_compose": {
Type: schema.TypeString,
Computed: true,
DiffSuppressFunc: suppressComposeDiff,
Type: schema.TypeString,
Computed: true,
},
"rendered_rancher_compose": {
Type: schema.TypeString,
Computed: true,
DiffSuppressFunc: suppressComposeDiff,
Type: schema.TypeString,
Computed: true,
},
},
}