Default 'ebs_optimized' and 'monitoring' to false
This commit is contained in:
parent
09a2886546
commit
4eba77eaee
|
@ -168,6 +168,7 @@ func resourceAwsSpotFleetRequest() *schema.Resource {
|
|||
"ebs_optimized": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Optional: true,
|
||||
Default: false,
|
||||
},
|
||||
"iam_instance_profile": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
|
@ -194,6 +195,7 @@ func resourceAwsSpotFleetRequest() *schema.Resource {
|
|||
"monitoring": &schema.Schema{
|
||||
Type: schema.TypeBool,
|
||||
Optional: true,
|
||||
Default: false,
|
||||
},
|
||||
"placement_group": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
|
|
Loading…
Reference in New Issue