Skip to content

Commit

Permalink
Slight modification for make compiler happy :)
Browse files Browse the repository at this point in the history
  • Loading branch information
echuvyrov committed Aug 19, 2017
1 parent 868dff6 commit 9e668cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/resource_arm_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func resourceArmImage() *schema.Resource {
"caching": {
Type: schema.TypeString,
Optional: true,
Default: compute.None,
Default: string(compute.None),
ValidateFunc: validation.StringInSlice([]string{
string(compute.None),
string(compute.ReadOnly),
Expand Down Expand Up @@ -127,7 +127,7 @@ func resourceArmImage() *schema.Resource {
"caching": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Default: string(compute.None),
ValidateFunc: validation.StringInSlice([]string{
string(compute.None),
string(compute.ReadOnly),
Expand Down

0 comments on commit 9e668cd

Please sign in to comment.