Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
bdb1847982 | |||
055fdb2282
|
|||
a5b431325c | |||
7b728727ff
|
|||
ffa5725a25
|
13
CHANGELOG.md
13
CHANGELOG.md
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.4.0] - 2024-11-30
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- install churn
|
||||||
|
|
||||||
|
## [0.3.0] - 2024-11-30
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- allow password to be null
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- revert changes to ip
|
||||||
|
|
||||||
## [0.2.3] - 2024-11-29
|
## [0.2.3] - 2024-11-29
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@@ -4,5 +4,7 @@ runcmd:
|
|||||||
- apt install -y qemu-guest-agent neovim ranger
|
- apt install -y qemu-guest-agent neovim ranger
|
||||||
- systemctl start qemu-guest-agent
|
- systemctl start qemu-guest-agent
|
||||||
- systemctl enable --now sshd
|
- systemctl enable --now sshd
|
||||||
|
- curl https://git.front.kjuulh.io/kjuulh/churn-v2/raw/branch/main/install.sh | bash
|
||||||
|
|
||||||
|
|
||||||
fqdn: ${hostname}.${domain}
|
fqdn: ${hostname}.${domain}
|
||||||
|
2
node.tf
2
node.tf
@@ -21,7 +21,7 @@ resource "null_resource" "cloud_init_deb12_node" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
provisioner "file" {
|
provisioner "file" {
|
||||||
source = local_file.cloud_init_deb12_node.source
|
source = local_file.cloud_init_deb12_node.filename
|
||||||
destination = "/var/lib/vz/snippets/cloud_init_deb12_${var.name}.yml"
|
destination = "/var/lib/vz/snippets/cloud_init_deb12_${var.name}.yml"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -55,6 +55,7 @@ variable "ssh_private" {
|
|||||||
|
|
||||||
variable "user_password" {
|
variable "user_password" {
|
||||||
sensitive = true
|
sensitive = true
|
||||||
|
default = null
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "cpu" {
|
variable "cpu" {
|
||||||
|
Reference in New Issue
Block a user