provider/digitalocean: Remove Optional and ForceNew for computed attr
This commit is contained in:
parent
2b12ddffd0
commit
c4bbb6e8a5
|
@ -42,15 +42,11 @@ func resourceDigitalOceanCertificate() *schema.Resource {
|
||||||
|
|
||||||
"not_after": {
|
"not_after": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
|
||||||
ForceNew: true,
|
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"sha1_fingerprint": {
|
"sha1_fingerprint": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
|
||||||
ForceNew: true,
|
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue