forked from fediversity/fediversity
un-hardcode networking info
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
This commit is contained in:
parent
c0682276fc
commit
72a54bc093
6 changed files with 45 additions and 3 deletions
|
|
@ -28,6 +28,8 @@ let
|
|||
proxmox-user
|
||||
proxmox-password
|
||||
node-name
|
||||
bridge
|
||||
vlanId
|
||||
;
|
||||
inherit (lib) mkOption types;
|
||||
eval =
|
||||
|
|
@ -340,6 +342,8 @@ let
|
|||
proxmox-user
|
||||
proxmox-password
|
||||
node-name
|
||||
bridge
|
||||
vlanId
|
||||
;
|
||||
root-path = pathToRoot;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@ let
|
|||
proxmox-user = "root@pam";
|
||||
proxmox-password = "mytestpw";
|
||||
node-name = "pve";
|
||||
bridge = "br0";
|
||||
vlanId = 0;
|
||||
};
|
||||
# FIXME generate the image `nixos-generate` was to make, but now do it for a desired `-c configuration.nix` rather than whatever generic thing now
|
||||
deployment =
|
||||
|
|
|
|||
|
|
@ -34,5 +34,15 @@ in
|
|||
description = "the name of the ProxmoX node to use.";
|
||||
type = types.str;
|
||||
};
|
||||
bridge = mkOption {
|
||||
description = "The name of the network bridge (defaults to vmbr0).";
|
||||
type = types.str;
|
||||
default = "vmbr0";
|
||||
};
|
||||
vlanId = mkOption {
|
||||
description = "The VLAN identifier.";
|
||||
type = types.int;
|
||||
default = 0;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -354,6 +354,16 @@ let
|
|||
description = "environment variables to configure the TF HTTP back-end, see <https://developer.hashicorp.com/terraform/language/backend/http#configuration-variables>";
|
||||
type = types.attrsOf (types.either types.str types.int);
|
||||
};
|
||||
bridge = mkOption {
|
||||
description = "The name of the network bridge (defaults to vmbr0).";
|
||||
type = types.str;
|
||||
default = "vmbr0";
|
||||
};
|
||||
vlanId = mkOption {
|
||||
description = "The VLAN identifier.";
|
||||
type = types.int;
|
||||
default = 0;
|
||||
};
|
||||
run = mkOption {
|
||||
type = types.package;
|
||||
# error: The option `tf-deployment.tf-host.run' is read-only, but it's set multiple times.
|
||||
|
|
@ -371,6 +381,8 @@ let
|
|||
proxmox-user
|
||||
proxmox-password
|
||||
node-name
|
||||
bridge
|
||||
vlanId
|
||||
;
|
||||
inherit (ssh)
|
||||
host
|
||||
|
|
@ -432,11 +444,13 @@ let
|
|||
inherit
|
||||
host
|
||||
nixos_conf
|
||||
bridge
|
||||
;
|
||||
node_name = node-name;
|
||||
proxmox_user = proxmox-user;
|
||||
proxmox_password = proxmox-password;
|
||||
ssh_user = username;
|
||||
node_name = node-name;
|
||||
vlan_id = vlanId;
|
||||
};
|
||||
tf-env = pkgs.callPackage ./run/tf-env.nix {
|
||||
inherit httpBackend;
|
||||
|
|
|
|||
|
|
@ -161,8 +161,8 @@ resource "proxmox_virtual_environment_vm" "nix_vm" {
|
|||
|
||||
network_device {
|
||||
model = "virtio"
|
||||
bridge = "ovsbr0"
|
||||
vlan_id = 1305
|
||||
bridge = var.bridge
|
||||
vlan_id = var.vlan_id
|
||||
}
|
||||
|
||||
operating_system {
|
||||
|
|
|
|||
|
|
@ -51,6 +51,18 @@ variable "image" {
|
|||
type = string
|
||||
}
|
||||
|
||||
variable "bridge" {
|
||||
description = "The name of the network bridge (defaults to vmbr0)."
|
||||
type = string
|
||||
default = "vmbr0"
|
||||
}
|
||||
|
||||
variable "vlan_id" {
|
||||
description = "The VLAN identifier."
|
||||
type = number
|
||||
default = 0
|
||||
}
|
||||
|
||||
#########################################
|
||||
|
||||
variable "category" {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue