|
| 1 | +# GitHub Actions |
| 2 | +## [env-system-alternative](.github/workflows/env-system-alternative.yaml) |
| 3 | +If you have an organization on the free plan and you are using a private repository, you cannot use GitHub Environment. You need to use a dynamic Environment instead. It includes a solution for this. If you want to use GitHub Environment, you need to upgrade to the paid version. |
| 4 | + |
| 5 | +|Prod Secrets|Value| |
| 6 | +|-|-| |
| 7 | +|**PROD**_OPENVPN_CONFIG|.ovpn client file content.| |
| 8 | +|**PROD**_SSH_HOST|Instance private ip information because you are using OpenVPN.| |
| 9 | +|**PROD**_SSH_USERNAME|Will connect to Instance and restricted username.| |
| 10 | +|**PROD**_SSH_PRIVATE_KEY|Private key to be used when connecting to the instance.| |
| 11 | +|**PROD**_SSH_PORT|The port information to make the SSH connection. It is usually used as 22. It would be good if you change this port for security.| |
| 12 | + |
| 13 | +|Dev Secrets|Value| |
| 14 | +|-|-| |
| 15 | +|**DEV**_OPENVPN_CONFIG|.ovpn client file content.| |
| 16 | +|**DEV**_SSH_HOST|Instance private ip information because you are using OpenVPN.| |
| 17 | +|**DEV**_SSH_USERNAME|Will connect to Instance and restricted username.| |
| 18 | +|**DEV**_SSH_PRIVATE_KEY|Private key to be used when connecting to the instance.| |
| 19 | +|**DEV**_SSH_PORT|The port information to make the SSH connection. It is usually used as 22. It would be good if you change this port for security.| |
| 20 | + |
| 21 | +|Test Secrets|Value| |
| 22 | +|-|-| |
| 23 | +|**TEST**_OPENVPN_CONFIG|.ovpn client file content.| |
| 24 | +|**TEST**_SSH_HOST|Instance private ip information because you are using OpenVPN.| |
| 25 | +|**TEST**_SSH_USERNAME|Will connect to Instance and restricted username.| |
| 26 | +|**TEST**_SSH_PRIVATE_KEY|Private key to be used when connecting to the instance.| |
| 27 | +|**TEST**_SSH_PORT|The port information to make the SSH connection. It is usually used as 22. It would be good if you change this port for security.| |
| 28 | + |
| 29 | +## [openvpn-with-ssh](.github/workflows/openvpn-with-ssh.yaml) |
| 30 | +In many OpenVPN solutions, the .ovpn client file must be included in the repository. This is not a very logical approach. You can use OpenVPN for this by defining the client file as secret. |
| 31 | + |
| 32 | +|Secrets|Value| |
| 33 | +|-|-| |
| 34 | +|OPENVPN_CONFIG|.ovpn client file content.| |
| 35 | +|SSH_HOST|Instance private ip information because you are using OpenVPN.| |
| 36 | +|SSH_USERNAME|Will connect to Instance and restricted username.| |
| 37 | +|SSH_PRIVATE_KEY|Private key to be used when connecting to the instance.| |
| 38 | +|SSH_PORT|The port information to make the SSH connection. It is usually used as 22. It would be good if you change this port for security.| |
0 commit comments