openvpn-terraform-install icon indicating copy to clipboard operation
openvpn-terraform-install copied to clipboard

A one-stop Terraform module that creates an OpenVPN server in AWS readily provisioned with access by the users defined in the input

Results 7 openvpn-terraform-install issues
Sort by recently updated
recently updated
newest added

Before all, thanks for sharing such a nice project! Helped me a lot. So, here goes something that would make this project a bit more resilient on changes. I just...

Hi @dumrauf. This is a very cool module. Thank you for creating and maintaining it. I noticed that the README does not include the inputs to the module and I've...

Hi Dominic, Your solution is great. But what happens if the AMI changes? Following an update of the AMI it seems that it is not correctly reprovisioning the server. It...

The script is unable to revoke users. It hangs on the menu system of `openvpn-install.sh` while trying to revoke user redacted3: ``` null_resource.openvpn_update_users_script[0] (remote-exec): Revoking certificate for user redacted3! null_resource.openvpn_update_users_script[0]...

tested using: ```bash 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}" &&...