You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_resource_group_description"></a> [resource\_group\_description](#input\_resource\_group\_description)| (Optional) The description of Resource Group. |`string`|`"Managed by Terraform."`| no |
43
43
| <aname="input_resource_group_enabled"></a> [resource\_group\_enabled](#input\_resource\_group\_enabled)| (Optional) Whether to create Resource Group to find and group AWS resources which are created by this module. |`bool`|`true`| no |
44
44
| <aname="input_resource_group_name"></a> [resource\_group\_name](#input\_resource\_group\_name)| (Optional) The name of Resource Group. A Resource Group name can have a maximum of 127 characters, including letters, numbers, hyphens, dots, and underscores. The name cannot start with `AWS` or `aws`. |`string`|`""`| no |
45
+
| <aname="input_spread_level"></a> [spread\_level](#input\_spread\_level)| (Optional) The spread level to determine how the placement group spread instances. Can only be specified when the `strategy` is set to `SPREAD`. Valid values are `HOST` and `RACK`. `HOST` can only be used for Outpost placement groups. |`string`|`"RACK"`| no |
45
46
| <aname="input_tags"></a> [tags](#input\_tags)| (Optional) A map of tags to add to all resources. |`map(string)`|`{}`| no |
46
47
47
48
## Outputs
@@ -52,5 +53,6 @@ No modules.
52
53
| <aname="output_id"></a> [id](#output\_id)| The ID of the placement group. |
53
54
| <aname="output_name"></a> [name](#output\_name)| The name of the placement group. |
54
55
| <aname="output_partition_size"></a> [partition\_size](#output\_partition\_size)| The number of partitions in the placement group. Only configured when the `strategy` is `PARTITION`. |
56
+
| <aname="output_spread_level"></a> [spread\_level](#output\_spread\_level)| The spread level to determine how the placement group spread instance. Only configured when the `strategy` is `SPREAD`. |
55
57
| <aname="output_strategy"></a> [strategy](#output\_strategy)| The placement strategy. |
Copy file name to clipboardExpand all lines: modules/placement-group/variables.tf
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,18 @@ variable "partition_size" {
26
26
nullable=false
27
27
}
28
28
29
+
variable"spread_level" {
30
+
description="(Optional) The spread level to determine how the placement group spread instances. Can only be specified when the `strategy` is set to `SPREAD`. Valid values are `HOST` and `RACK`. `HOST` can only be used for Outpost placement groups."
0 commit comments