aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/terraform-openstack-2n/variables.tf
diff options
context:
space:
mode:
authorpmikus <peter.mikus@protonmail.ch>2024-02-13 13:01:54 +0100
committerpmikus <peter.mikus@protonmail.ch>2024-02-13 13:03:23 +0000
commite664d6963984e33a0efab939d83fd0f015f80fbb (patch)
tree7623cb8e7066ddb7038d291242bcc65c4161d149 /fdio.infra.terraform/terraform-openstack-2n/variables.tf
parent3797578ec4b0c4662afa44e7556d13d19e2c8e30 (diff)
feat(bootstrap): Add ability to load external NODE_FLAVOR
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch> Change-Id: Ia6e07111af543280b2365840bced02f94cf91e75
Diffstat (limited to 'fdio.infra.terraform/terraform-openstack-2n/variables.tf')
-rw-r--r--fdio.infra.terraform/terraform-openstack-2n/variables.tf14
1 files changed, 14 insertions, 0 deletions
diff --git a/fdio.infra.terraform/terraform-openstack-2n/variables.tf b/fdio.infra.terraform/terraform-openstack-2n/variables.tf
new file mode 100644
index 0000000000..d761016699
--- /dev/null
+++ b/fdio.infra.terraform/terraform-openstack-2n/variables.tf
@@ -0,0 +1,14 @@
+variable "flavour_name" {
+ description = "(Optional; Required if flavor_id is empty) The name of the desired flavor for the server. Changing this resizes the existing server."
+ type = string
+}
+
+variable "network_id_data" {
+ description = "(Required) The ID of the network to attach the port to. Changing this creates a new port."
+ type = string
+}
+
+variable "network_id_mgmt" {
+ description = "(Required) The ID of the network to attach the port to. Changing this creates a new port."
+ type = string
+}