terraform apply
Some checks failed
Gitea Actions Demo / Terraform Plan (push) Failing after 22s

This commit is contained in:
MichaelFisher1997 2025-04-18 11:01:55 +01:00
parent 724a433d5e
commit ba3fe8e7ff
3 changed files with 5 additions and 5 deletions

View File

@ -16,9 +16,8 @@ jobs:
pull-requests: write
env:
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY }}
TF_VAR_SSH_KEY_PUBLIC: ${{ secrets.SSH_KEY_PUBLIC }}
TF_VAR_TS_AUTHKEY: ${{ secrets.TAILSCALE_KEY }}
TF_VAR_ssh_key: ${{ secrets.SSH_PUBLIC_KEY }}
steps:
- name: Checkout repository
@ -33,6 +32,7 @@ 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,9 +17,8 @@ jobs:
pull-requests: write
env:
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY }}
TF_VAR_SSH_KEY: ${{ secrets.SSH_KEY_PUBLIC }}
TF_VAR_TS_AUTHKEY: ${{ secrets.TAILSCALE_KEY }}
# TF_VAR_ssh_key: ${{ secrets.SSH_PUBLIC_KEY }}
steps:
- name: Checkout repository
@ -34,6 +33,7 @@ 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,7 @@ variable "TS_AUTHKEY" {
description = "Tailscale auth key used in cloud-init"
}
variable "SSK_KEY_PUB" {
variable "SSK_KEY_PUBLIC" {
type = string
description = "My Public SSH key fo ssh auth list"
}