Compare commits
26 Commits
f119b96cf3
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a7b4eacdb | |||
| 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@v6'
|
||||||
- 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@v6'
|
||||||
- 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@v6'
|
||||||
- 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"
|
||||||
|
}
|
||||||
45
terraform/.terraform.lock.hcl
generated
45
terraform/.terraform.lock.hcl
generated
@@ -2,23 +2,34 @@
|
|||||||
# 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.57.0"
|
||||||
constraints = "~> 1.32.1"
|
constraints = "~> 1.57.0"
|
||||||
hashes = [
|
hashes = [
|
||||||
"h1:xJuDRJWUuQq0ROVwa1VrtXaUVNPP6KvIWZbmDuOQgJM=",
|
"h1:0zhuOTR/o5N1v3YhqAF+FV4zzAhf7u4daYeMjCSggTs=",
|
||||||
"zh:06d9ad67eb39397867f41a6a691e1198853c2eeaa91723ea126d14f9921380b5",
|
"h1:3L7tShwvc84Pq3x++t/eUOCpRj56+0zz0xXLSL0MzmM=",
|
||||||
"zh:193cfe86a0161ad3986f6b31daeae4b55c35853dddeba4cfd7c05f14ee1efbf8",
|
"h1:4puV5dGyissHRQ8qxhxiFIFlk3/BDrIGBhjLTOOUCYI=",
|
||||||
"zh:2a13de4a174dc43f429a9f98c3a61fc3929b234d475cc26e968f1b7511a7295c",
|
"h1:6r1yJRzfDDyYi8HcFy+xn3/wEUF1Haelj0uitxzgyTE=",
|
||||||
"zh:4709968e190d1ff774e524b6577a6b35ae17f9cc0e5cbfc18d1b6fd0c88b529f",
|
"h1:868UK5UDkokWwcTEDe51zRkYm/fglnQmPQLz/KKWj50=",
|
||||||
"zh:5001f0ee6a2a9c75fab28ab3cd84f00813f2b050a3a93534fbadabc42a26cc31",
|
"h1:90Awue4l5neJvyotgLRivOpDNGTP7dvrtaswrNhKZH8=",
|
||||||
"zh:67534f3f4c01cc8d5b3aeae021e0529d8f56f02b19fbab5119b865c477e64324",
|
"h1:NN5kxyHbylzToCBXaz+SOmbCAm0wImXaMfQa+nSDRL0=",
|
||||||
"zh:696f53d3ce4f385209c2efc995d6fc6c139c6bb3dff2bd8baa372a5189c40570",
|
"h1:NgmyKBvR1DwY81s68oxD7PBG5ro2U7Buoqubyhjsq7w=",
|
||||||
"zh:713f876c2d59858c3d6340448575e64d769e770e5e25408fd44b39e0ef3c58cb",
|
"h1:TDdNxF3yyWkUqUg7eSSKtAzoQaH9OCUL9eg2Lh0Oh+0=",
|
||||||
"zh:71c38e24e8d646e77fc73e2ee28416ebcf6be99aa6d4421dfd3674237ccaaa8c",
|
"h1:Xk+Whn6wnhEJEeiO/mPII/mOL+buHLj05AKy4TbDz3U=",
|
||||||
"zh:817a8eb38d97400c0d3e2aa9f9fcc3fb7c5cc752fd15380c78069aa42a191ce1",
|
"h1:qDj6odiMxH7GSJew6ThZdeGtkFnIK0zJavo022VBDLY=",
|
||||||
"zh:92e1659e33e3dd2d23c2579a8a9497a270d22dbd867c6e8fafdf1aceb02bd052",
|
"h1:rACnAzPlfbR1zy3n+febsWuoWPvN1Tt+U9lyVDFRb4w=",
|
||||||
"zh:a94b51f4c189308b47818112a170af1f5015b35b8482d5be46dcba9d9afd5b57",
|
"h1:xpAcuja19Ts7bCpmULKdBw4dEBJhF/eL6AjM4xDBEAI=",
|
||||||
"zh:b5445f6ca4b4207be4677786c802c3a91d2fa543dac88d7e8bc570feb7fdc20d",
|
"zh:016ecc39328f34f6c0ffa413598f354824f7878c89cd031f123edb4bc8a687a2",
|
||||||
"zh:d0ed8e2b24793bbd38e80ea9ed98bc561becd850e6c1320d94000783fbd4964d",
|
"zh:10b362dc0847200c987214b129b5f85e2f7d8ad417261a1d2dd04ab74de15603",
|
||||||
|
"zh:194647d9a61dca4f411f44580316b88a11095d7a99679d445f9b0f2c1ba976c4",
|
||||||
|
"zh:1d8aafe2ce7890696385bb3a0c3286e7ee3020416d337f59935406e4c6f91de6",
|
||||||
|
"zh:594585616210fb232fad4ebda2387ecd3f483931e00eff988fca83add6ce7cfc",
|
||||||
|
"zh:65e50be33ffb85580546f119839e1293591cc6d4db729d809931d0408b6ae408",
|
||||||
|
"zh:7d4ed5bd8c477ec304142e2160203a76a0d09c93d224950bda253172b2571038",
|
||||||
|
"zh:90a70a70a266b78c8216903e711904e6969b3957d182602b5d788602ec9ef323",
|
||||||
|
"zh:abb8e28e96fb8de270995873de980896b7cb53cfc550f02c50eaa42884624ba9",
|
||||||
|
"zh:bbf34dca2de6e105ca7204222162a0402d8e9e9a28e1de5ffbaa2c0d6270a059",
|
||||||
|
"zh:c1a9edb693d632dcb5c3c9ee84c97138e08eadb9354e28592efd581f68ac0385",
|
||||||
|
"zh:dadbf1368fae314fe8dcb99ebefbc78409f3fc0e3808cd92ea573b8eee1cae98",
|
||||||
|
"zh:e713e00ca27348abd18da2eeff861905e84050e3e7e008f14a0c63c70ab2ff84",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ terraform {
|
|||||||
required_providers {
|
required_providers {
|
||||||
hcloud = {
|
hcloud = {
|
||||||
source = "hetznercloud/hcloud"
|
source = "hetznercloud/hcloud"
|
||||||
version = "~> 1.32.1"
|
version = "~> 1.57.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user