openvpn-terraform-install
openvpn-terraform-install copied to clipboard
get a pint
tested using:
test_array="a b c"
test_value="b"
is_in_array "${test_value}" "${test_array}" && echo "$test_value is in the array" || echo "$test_value is not in the array"
test_value="d"
is_in_array "${test_value}" "${test_array}" && echo "$test_value is in the array" || echo "$test_value is not in the array"