04 - Setup Secure SSH Access for an hour #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 04 - Setup Secure SSH Access for an hour | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
TF_VAR_compartment_ocid: ${{ secrets.OCI_COMPARTMENT_OCID }} | |
TF_VAR_fingerprint: ${{ secrets.OCI_CLI_FINGERPRINT }} | |
TF_VAR_private_key: ${{ secrets.OCI_CLI_KEY_CONTENT }} | |
TF_VAR_region: ${{ secrets.OCI_CLI_REGION }} | |
TF_VAR_tenancy_ocid: ${{ secrets.OCI_CLI_TENANCY }} | |
TF_VAR_user_ocid: ${{ secrets.OCI_CLI_USER }} | |
TF_VAR_ssh_public_key: ${{ secrets.JUNAID_SSH_PUBLIC_KEY }} | |
TF_VAR_project: junaid | |
# using kubectl get nodes as documented in readme to get instance id | |
TF_VAR_instance_ids: '["ocid1.instance.oc1.uk-london-1.anwgiljt7rbqbnacvu6dqcg3bbg4inrjyrylreurzykchakkhmgo6pypugsa"]' | |
TF_VAR_client_cidr_block_allow_list: '["0.0.0.0/0"]' | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
working_directory: ./terraform/04-ssh/ | |
defaults: | |
run: | |
working-directory: ${{env.working_directory}} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Terraform Setup | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.5.3 | |
- name: Terraform fmt | |
id: fmt | |
run: terraform fmt -check | |
continue-on-error: true | |
- name: Terraform Init | |
id: init | |
run: terraform init | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate -no-color | |
- name: Terraform Apply | |
id: apply | |
run: terraform apply -auto-approve -no-color | |