page_title | subcategory | description |
---|---|---|
random_shuffle Resource - terraform-provider-random |
The resource random_shuffle generates a random permutation of a list of strings given as an argument. |
The resource random_shuffle
generates a random permutation of a list of strings given as an argument.
resource "random_shuffle" "az" {
input = ["us-west-1a", "us-west-1c", "us-west-1d", "us-west-1e"]
result_count = 2
}
resource "aws_elb" "example" {
# Place the ELB in any two of the given availability zones, selected
# at random.
availability_zones = random_shuffle.az.result
# ... and other aws_elb arguments ...
}
input
(List of String) The list of strings to shuffle.
keepers
(Map of String) Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider documentation for more information.result_count
(Number) The number of results to return. Defaults to the number of items in theinput
list. If fewer items are requested, some elements will be excluded from the result. If more items are requested, items will be repeated in the result but not more frequently than the number of items in the input list.seed
(String) Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the list.
Important: Even with an identical seed, it is not guaranteed that the same permutation will be produced across different versions of Terraform. This argument causes the result to be less volatile, but not fixed for all time.
id
(String) A static value used internally by Terraform, this should not be referenced in configurations.result
(List of String) Random permutation of the list of strings given ininput
. The number of elements is determined byresult_count
if set, or the number of elements ininput
.