Compare commits

..

No commits in common. "ba3fe8e7ff2b5bedad14ba15a082e785d56b6206" and "bfbf0680e2eda107d0b05da9d769a1410488f4a6" have entirely different histories.

3 changed files with 4 additions and 8 deletions

View File

@ -16,8 +16,9 @@ jobs:
pull-requests: write
env:
TF_VAR_SSH_KEY_PUBLIC: ${{ secrets.SSH_KEY_PUBLIC }}
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY }}
TF_VAR_TS_AUTHKEY: ${{ secrets.TAILSCALE_KEY }}
TF_VAR_ssh_key: ${{ secrets.SSH_PUBLIC_KEY }}
steps:
- name: Checkout repository
@ -32,7 +33,6 @@ jobs:
working-directory: terraform
run: |
echo 'proxmox_password = "${{ secrets.PROXMOX_PASSWORD }}"' >> terraform.tfvars
echo 'SSH_KEY_PUBLIC = "${{ secrets.SSH_KEY_PUBLIC }}"' >> terraform.tfvars
- name: Terraform Init
working-directory: terraform

View File

@ -17,8 +17,9 @@ jobs:
pull-requests: write
env:
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY_PUBLIC }}
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY }}
TF_VAR_TS_AUTHKEY: ${{ secrets.TAILSCALE_KEY }}
# TF_VAR_ssh_key: ${{ secrets.SSH_PUBLIC_KEY }}
steps:
- name: Checkout repository
@ -33,7 +34,6 @@ jobs:
working-directory: terraform
run: |
echo 'proxmox_password = "${{ secrets.PROXMOX_PASSWORD }}"' >> terraform.tfvars
echo 'SSH_KEY_PUBLIC = "${{ secrets.SSH_KEY_PUBLIC }}"' >> terraform.tfvars
- name: Terraform Init
working-directory: terraform

View File

@ -79,7 +79,3 @@ variable "TS_AUTHKEY" {
description = "Tailscale auth key used in cloud-init"
}
variable "SSK_KEY_PUBLIC" {
type = string
description = "My Public SSH key fo ssh auth list"
}