mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Fixed missing = in common. Further saving of bytes.
This commit is contained in:
parent
afdeb7da3e
commit
6b4e18bbb5
4 changed files with 3 additions and 3 deletions
|
|
@ -6,7 +6,6 @@
|
|||
];
|
||||
|
||||
kw.oci = {
|
||||
base = "Canonical Ubuntu";
|
||||
specs = {
|
||||
shape = "VM.Standard.A1.Flex";
|
||||
cores = 4;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
];
|
||||
|
||||
kw.oci = {
|
||||
base = "Canonical Ubuntu";
|
||||
specs = {
|
||||
shape = "VM.Standard.E2.1.Micro";
|
||||
cores = 1;
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ in
|
|||
tf.ipv6.address = tf.resources.rinnosuke_ipv6.refAttr "ip_address";
|
||||
};
|
||||
};
|
||||
firewall.public.interfaces singleton interface;
|
||||
firewall.public.interfaces = singleton interface;
|
||||
tf = {
|
||||
enable = true;
|
||||
ipv4_attr = "public_ip";
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
ubuntu = true;
|
||||
common = true;
|
||||
};
|
||||
kw.oci.base = "Canonical Ubuntu";
|
||||
imports = with import (sources.tf-nix + "/modules"); [
|
||||
nixos.ubuntu-linux
|
||||
common
|
||||
|
|
@ -16,6 +17,7 @@
|
|||
oracle = true;
|
||||
common = true;
|
||||
};
|
||||
kw.oci.base = "Oracle Linux";
|
||||
imports = with import (sources.tf-nix + "/modules"); [
|
||||
nixos.oracle-linux
|
||||
common
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue