Compare commits
26 Commits
f119b96cf3
...
renovate/a
Author | SHA1 | Date | |
---|---|---|---|
c8afe5f8d5 | |||
aeaecc7598 | |||
fed6a38b31 | |||
643c466a12 | |||
0fec31e627 | |||
dbcd37e0c2 | |||
588d98369c | |||
bf65353a10 | |||
8890fd19c6 | |||
a6c70aa338 | |||
55a45e6a12 | |||
ba385cad7a | |||
f2feb28cee | |||
728ae8ebe0 | |||
267fc43a26 | |||
4460c77425 | |||
bdf417bde5 | |||
ac6e12a7d1
|
|||
ad8da7b669
|
|||
e23167ec77 | |||
ca2b9217fb | |||
|
39125787db | ||
|
4780c3c9a7 | ||
|
d62b845893 | ||
|
a229ade933 | ||
|
710df5beb9 |
9
.drone.yml
Executable file
9
.drone.yml
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: "test"
|
||||||
|
steps:
|
||||||
|
- name: test
|
||||||
|
image: harbor.front.kjuulh.io/docker-proxy/library/bash:latest
|
||||||
|
commands:
|
||||||
|
- echo 'Run tests'
|
13
.github/dependabot.yml
vendored
Normal file
13
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
version: 2
|
||||||
|
|
||||||
|
updates:
|
||||||
|
|
||||||
|
- package-ecosystem: 'terraform'
|
||||||
|
directory: '/terraform'
|
||||||
|
schedule:
|
||||||
|
interval: 'daily'
|
||||||
|
|
||||||
|
- package-ecosystem: 'github-actions'
|
||||||
|
directory: '/'
|
||||||
|
schedule:
|
||||||
|
interval: 'daily'
|
@@ -1,4 +1,4 @@
|
|||||||
name: 'CI'
|
name: 'Main'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -14,13 +14,15 @@ jobs:
|
|||||||
|
|
||||||
validate-packer:
|
validate-packer:
|
||||||
name: 'Validate Packer configuration'
|
name: 'Validate Packer configuration'
|
||||||
runs-on: 'ubuntu-20.04'
|
runs-on: 'ubuntu-24.04'
|
||||||
|
permissions:
|
||||||
|
contents: 'read'
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: './packer/'
|
working-directory: './packer/'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout project'
|
- name: 'Checkout project'
|
||||||
uses: 'actions/checkout@v3'
|
uses: 'actions/checkout@v4'
|
||||||
- name: 'Install dependencies'
|
- name: 'Install dependencies'
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
||||||
@@ -35,13 +37,15 @@ jobs:
|
|||||||
|
|
||||||
validate-terraform:
|
validate-terraform:
|
||||||
name: 'Validate Terraform configuration'
|
name: 'Validate Terraform configuration'
|
||||||
runs-on: 'ubuntu-20.04'
|
runs-on: 'ubuntu-24.04'
|
||||||
|
permissions:
|
||||||
|
contents: 'read'
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: './terraform/'
|
working-directory: './terraform/'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout project'
|
- name: 'Checkout project'
|
||||||
uses: 'actions/checkout@v3'
|
uses: 'actions/checkout@v4'
|
||||||
- name: 'Install dependencies'
|
- name: 'Install dependencies'
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
||||||
@@ -60,13 +64,15 @@ jobs:
|
|||||||
build-packer:
|
build-packer:
|
||||||
name: 'Build Packer image'
|
name: 'Build Packer image'
|
||||||
needs: ['validate-packer']
|
needs: ['validate-packer']
|
||||||
runs-on: 'ubuntu-20.04'
|
runs-on: 'ubuntu-24.04'
|
||||||
|
permissions:
|
||||||
|
contents: 'read'
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: './packer/'
|
working-directory: './packer/'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout project'
|
- name: 'Checkout project'
|
||||||
uses: 'actions/checkout@v3'
|
uses: 'actions/checkout@v4'
|
||||||
- name: 'Install dependencies'
|
- name: 'Install dependencies'
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
curl --proto '=https' --tlsv1.2 -sSf 'https://apt.releases.hashicorp.com/gpg' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/hashicorp.gpg
|
3
renovate.json
Normal file
3
renovate.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||||
|
}
|
47
terraform/.terraform.lock.hcl
generated
47
terraform/.terraform.lock.hcl
generated
@@ -2,23 +2,36 @@
|
|||||||
# Manual edits may be lost in future updates.
|
# Manual edits may be lost in future updates.
|
||||||
|
|
||||||
provider "registry.terraform.io/hetznercloud/hcloud" {
|
provider "registry.terraform.io/hetznercloud/hcloud" {
|
||||||
version = "1.32.2"
|
version = "1.51.0"
|
||||||
constraints = "~> 1.32.1"
|
constraints = "~> 1.51.0"
|
||||||
hashes = [
|
hashes = [
|
||||||
"h1:xJuDRJWUuQq0ROVwa1VrtXaUVNPP6KvIWZbmDuOQgJM=",
|
"h1:5w2N8UukNCxpwdaPo69aIP8bvi7n74fLrT47fw/9iwg=",
|
||||||
"zh:06d9ad67eb39397867f41a6a691e1198853c2eeaa91723ea126d14f9921380b5",
|
"h1:7msHzDcV9jMPKgTE6oWz4po7wyhp5hTpGHooVvoAfg8=",
|
||||||
"zh:193cfe86a0161ad3986f6b31daeae4b55c35853dddeba4cfd7c05f14ee1efbf8",
|
"h1:98emWdXj0Z4coisP4tL9D8WUv27uzGzGmdm3J3gvsr8=",
|
||||||
"zh:2a13de4a174dc43f429a9f98c3a61fc3929b234d475cc26e968f1b7511a7295c",
|
"h1:9rmT8w815i3NIBHv3DOhaGnKc46Ylrl1r3lAt6+IrKg=",
|
||||||
"zh:4709968e190d1ff774e524b6577a6b35ae17f9cc0e5cbfc18d1b6fd0c88b529f",
|
"h1:G1h8L4mkvEaLNTz+W/9V5wf1MeFen8VvGCJQasdPSGE=",
|
||||||
"zh:5001f0ee6a2a9c75fab28ab3cd84f00813f2b050a3a93534fbadabc42a26cc31",
|
"h1:IWwzOnMh81Hubxa+Ib7/H0toFFLBaphl91wrTb/5YX8=",
|
||||||
"zh:67534f3f4c01cc8d5b3aeae021e0529d8f56f02b19fbab5119b865c477e64324",
|
"h1:TXB35kTdJ5U3wZwC+5LAWZWUHFn/R5Jki09DRztt+WY=",
|
||||||
"zh:696f53d3ce4f385209c2efc995d6fc6c139c6bb3dff2bd8baa372a5189c40570",
|
"h1:X7DxvpyTWyBVxhFC1AFk4BfaSMPMq9+LcJPQ+oWo/uk=",
|
||||||
"zh:713f876c2d59858c3d6340448575e64d769e770e5e25408fd44b39e0ef3c58cb",
|
"h1:bQO7bibNTccWWx+KPG2AsEU5Jt3xqPmGzHLwv+4Lfic=",
|
||||||
"zh:71c38e24e8d646e77fc73e2ee28416ebcf6be99aa6d4421dfd3674237ccaaa8c",
|
"h1:htQRFP/SqYKeG/pZCNfb1wXXUYudq+E9cHz3xss7p8k=",
|
||||||
"zh:817a8eb38d97400c0d3e2aa9f9fcc3fb7c5cc752fd15380c78069aa42a191ce1",
|
"h1:n6HlVBObAiYbSPgzM9rPJQIdFkZEtN4TPXwEB5ffYpk=",
|
||||||
"zh:92e1659e33e3dd2d23c2579a8a9497a270d22dbd867c6e8fafdf1aceb02bd052",
|
"h1:rl6joR7WDgrpSDCBDCNIrgNzIxdODwL7izigngJjXSM=",
|
||||||
"zh:a94b51f4c189308b47818112a170af1f5015b35b8482d5be46dcba9d9afd5b57",
|
"h1:s4eh/VUSTwyGjtWZq86Kkqt0i9ItRiv6ih87XBmnhHQ=",
|
||||||
"zh:b5445f6ca4b4207be4677786c802c3a91d2fa543dac88d7e8bc570feb7fdc20d",
|
"h1:yER+O3OKYfxBAO7KVYZzH+4EYrmorCO0J0hlnRUfH00=",
|
||||||
"zh:d0ed8e2b24793bbd38e80ea9ed98bc561becd850e6c1320d94000783fbd4964d",
|
"zh:0e8e78084c12866e8e3873011bcac125780b62afeaa518d4749b9a063ae6e32b",
|
||||||
|
"zh:145738cee21bcdeea1cf82f0d44f7f239c27c2214249e5e5079668c479522a8a",
|
||||||
|
"zh:164406be8ee83952f58a449d514837cc6d9763b6d29e72262d5582d5d5b89315",
|
||||||
|
"zh:1a0e6ffab3196b35ca65eb445622615bb8dddd68d0bf350ed60d25e1e74f67dc",
|
||||||
|
"zh:3b7729d1bb5cc7a5af60b42a607f7b3fec690192b1efb55e2341cee88405ecb0",
|
||||||
|
"zh:3bcfc5c40d1b7702f39dac5d2dd9eef58c9c934effb4676e26fbe85fe2057e8f",
|
||||||
|
"zh:3ce193892dca025b804de6d99316c50a33462eb36336006a9db7ea44be439eba",
|
||||||
|
"zh:4f92437e1eba8eafe4417f8b61d557ed47f121622305ee2b3c13c31e45c69ca4",
|
||||||
|
"zh:554c308bf64b603a075a8f13a151a136b68ba382c2d83977a0df26de7dea2d3d",
|
||||||
|
"zh:8c57aa6032fed5da43a0102a4f26262c0496803b99f2f92e5ceb02c80161e291",
|
||||||
|
"zh:99cd4d246d0ad3a3529176df22a47f254700f8c4fc33f62c14464259284945b7",
|
||||||
|
"zh:af38a4d1e93f2392a296970ba4ecea341204e888d579cd74642e9f23a94b3b06",
|
||||||
|
"zh:f0766d42dd97b3eac6fa614fa5809ff2511c9104f3834d0d4b6e84674f13f092",
|
||||||
|
"zh:f20f7379876ede225f3b6f0719826706a171ea4c1dd438a8a3103dee8fe43ccc",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,7 @@ terraform {
|
|||||||
required_providers {
|
required_providers {
|
||||||
hcloud = {
|
hcloud = {
|
||||||
source = "hetznercloud/hcloud"
|
source = "hetznercloud/hcloud"
|
||||||
version = "~> 1.32.1"
|
version = "~> 1.51.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user