Skip to content

Commit

Permalink
added optional bool defaults for diff
Browse files Browse the repository at this point in the history
  • Loading branch information
jackofallops committed Feb 13, 2020
1 parent 41402a1 commit bd260e0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,34 +194,41 @@ func resourceArmApiManagementService() *schema.Resource {
"enable_backend_ssl30": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"enable_backend_tls10": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"enable_backend_tls11": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},

"enable_frontend_ssl30": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},

"enable_frontend_tls10": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},

"enable_frontend_tls11": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},

"enable_triple_des_ciphers": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
},
},
Expand Down

0 comments on commit bd260e0

Please sign in to comment.