Compare commits

..

No commits in common. "38d13e8b0c2083cbf7ff7bbc8ea41a0629e1005f" and "a9280b58f5915c7c50cc831885360f74fecaae8a" have entirely different histories.

8 changed files with 191 additions and 562 deletions

1
.gitignore vendored
View File

@ -4,4 +4,3 @@ id_ed25519
*.retry *.retry
ansible/*.retry ansible/*.retry
ansible/playbooks/files/buffer/* ansible/playbooks/files/buffer/*
.direnv

View File

@ -3,17 +3,3 @@
Scripts and code to deploy OpenStack nodes on various providers with OpenStack-Ansible. Scripts and code to deploy OpenStack nodes on various providers with OpenStack-Ansible.
Future: Integrate with Netbox to provision and hold IPAM / DCIM Future: Integrate with Netbox to provision and hold IPAM / DCIM
## Ansible
Contains a set of playbooks which will setup hosts with necessary changes and run bootstrap scripts as necessary.
Always supply ``-e 'aio_install=1'`` to scripts when doing an AIO install.
Guide:
* Run init-nodes.yml - `ansible-playbook -i vultr.yml -e 'host=all'`
* Run adhoc-reboot.yml to restart nodes after being upgraded and changing selinux
* Run setup-infra.yml on infra and/or AIO hosts (don't forget -e aio_install=1)
* Run setup-storage.yml on storage hosts, if applicable.

View File

@ -1,57 +0,0 @@
diff --git a/run_tests.sh b/run_tests.sh
index 48ce6583b..5fffe12b6 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -54,7 +54,7 @@ source /etc/os-release || source /usr/lib/os-release
# Figure out the appropriate package install command
case ${ID,,} in
*suse*) pkg_mgr_cmd="zypper -n in" ;;
- centos|rhel|fedora) pkg_mgr_cmd="dnf install -y" ;;
+ rocky|rhel|fedora) pkg_mgr_cmd="dnf install -y" ;;
ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;;
# Gentoo needs to have version set since it's rolling
gentoo) pkg_mgr_cmd="emerge --jobs=4"; VERSION="rolling" ;;
diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh
index 49a122a00..c464ffe72 100755
--- a/scripts/bootstrap-ansible.sh
+++ b/scripts/bootstrap-ansible.sh
@@ -71,7 +71,7 @@ determine_distro
# Install the base packages
case ${DISTRO_ID} in
- centos|rhel)
+ rocky|rhel)
dnf -y install \
git curl autoconf gcc gcc-c++ nc \
python3 python3-devel libselinux-python3 \
diff --git a/scripts/scripts-library.sh b/scripts/scripts-library.sh
index 742366cde..8d5ec1db2 100755
--- a/scripts/scripts-library.sh
+++ b/scripts/scripts-library.sh
@@ -212,7 +212,7 @@ function setup_ara {
function run_dstat {
if [ "$GATE_EXIT_RUN_DSTAT" == true ]; then
case ${DISTRO_ID} in
- centos|rhel)
+ rocky|rhel)
dnf -y install dstat
;;
ubuntu)
@@ -261,7 +261,7 @@ function log_instance_info {
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y install iproute2 net-tools
;;
- centos|rhel)
+ rocky|rhel)
dnf -y install iproute
;;
esac
@@ -336,7 +336,7 @@ function get_instance_info {
determine_distro
case ${DISTRO_ID} in
- centos|rhel|fedora|opensuse)
+ rocky|rhel|fedora|opensuse)
rpm -qa | sort > \
"/openstack/log/instance-info/host_packages_info_${TS}.log" || true
;;

View File

@ -86,7 +86,7 @@
mode: 0744 mode: 0744
owner: 'root' owner: 'root'
group: 'root' group: 'root'
when: aio_install is undefined or not aio_install when: not aio_install
tags: tags:
- interfaces - interfaces
@ -95,7 +95,7 @@
args: args:
chdir: /etc/sysconfig/network-scripts/ chdir: /etc/sysconfig/network-scripts/
creates: /etc/sysconfig/network-scripts/ifcfg-br-mgmt creates: /etc/sysconfig/network-scripts/ifcfg-br-mgmt
when: aio_install is undefined or not aio_install when: not aio_install
tags: tags:
- interfaces - interfaces
@ -151,7 +151,7 @@
- name: Install packages on non-infra hosts - name: Install packages on non-infra hosts
when: tag.find("infra") != -1 or aio_install when: tag.find("infra") == -1 or aio_install
ansible.builtin.dnf: ansible.builtin.dnf:
name: name:
- iputils - iputils

View File

@ -47,12 +47,13 @@
# - bootstrap # - bootstrap
- name: Deploy and setup configuration - name: Deploy and setup configuration
when: not aio_install | default('true') # bootstrap-AIO script instead does these things.
block: block:
- name: Copy template to etc - name: Copy template to etc
ansible.builtin.copy: ansible.builtin.copy:
remote_src: yes remote_src: yes
src: /opt/openstack-ansible/etc/openstack_deploy/ src: /opt/openstack-ansible/etc/openstack_deploy/
dest: /etc/openstack_deploy dest: /etc/openstack_deploy/
directory_mode: yes directory_mode: yes
force: no force: no
@ -72,8 +73,7 @@
args: args:
creates: /etc/openstack_deploy/user_secrets.yml.tar creates: /etc/openstack_deploy/user_secrets.yml.tar
#- import_tasks: tasks/python3-lxc.yml - import_tasks: tasks/python3-lxc.yml
# tags: python3-lxc
- name: "[AIO] Deploy and setup configuration / bootstrap" - name: "[AIO] Deploy and setup configuration / bootstrap"
when: aio_install | default('false') when: aio_install | default('false')
@ -118,7 +118,7 @@
mode: '0644' mode: '0644'
with_items: with_items:
- lxc_install_dnf - lxc_install_dnf
tags: config,patch tags: config
- name: manually patch os_nova role to kill powervmtools and futures== requiresments - name: manually patch os_nova role to kill powervmtools and futures== requiresments
ansible.builtin.copy: ansible.builtin.copy:
@ -127,7 +127,7 @@
mode: '0644' mode: '0644'
with_items: with_items:
- os_nova.patch - os_nova.patch
tags: config,patch tags: config
- name: patch the thing - name: patch the thing
args: args:

View File

@ -55,129 +55,24 @@ resource "vultr_block_storage" "cinder" {
#resource "vultr_instance" "aio1" { resource "vultr_instance" "aio1" {
# plan = "vc2-4c-8gb" plan = "vc2-4c-8gb"
# region = "ewr" region = "ewr"
# os_id = "448" os_id = "448"
# label = "aio1" label = "aio1"
# tag = "advancedlsa aio" #NO infra tag tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio1" hostname = "ala-aio1"
# enable_ipv6 = false enable_ipv6 = false
# backups = "disabled" backups = "disabled"
# ddos_protection = false ddos_protection = false
# activation_email = false activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd" script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id] ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id] private_network_ids = [vultr_private_network.mgmt2.id]
#} }
#resource "vultr_block_storage" "cinder-aio" { resource "vultr_block_storage" "cinder-aio" {
# size_gb = 100 size_gb = 100
# region = "ewr" region = "ewr"
# label = "ala-storage-cinder-aio" label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio1.id attached_to_instance = vultr_instance.aio1.id
#} }
#resource "vultr_instance" "aio2" {
# plan = "vc2-4c-8gb"
# region = "ewr"
# os_id = "448"
# label = "aio2"
# tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio2"
# enable_ipv6 = false
# backups = "disabled"
# ddos_protection = false
# activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id]
#}
#resource "vultr_block_storage" "cinder-aio2" {
# size_gb = 100
# region = "ewr"
# label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio2.id
#}
#resource "vultr_instance" "aio3" {
# plan = "vc2-4c-8gb"
# region = "ewr"
# os_id = "448"
# label = "aio3"
# tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio3"
# enable_ipv6 = false
# backups = "disabled"
# ddos_protection = false
# activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id]
#}
#resource "vultr_block_storage" "cinder-aio3" {
# size_gb = 100
# region = "ewr"
# label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio3.id
#}
#resource "vultr_instance" "aio4" {
# plan = "vc2-4c-8gb"
# region = "ewr"
# os_id = "448"
# label = "aio4"
# tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio4"
# enable_ipv6 = false
# backups = "disabled"
# ddos_protection = false
# activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id]
#}
#resource "vultr_block_storage" "cinder-aio4" {
# size_gb = 100
# region = "ewr"
# label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio4.id
#}
#resource "vultr_instance" "aio5" {
# plan = "vc2-16c-64gb"
# region = "ewr"
# os_id = "448"
# label = "aio5"
# tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio5"
# enable_ipv6 = false
# backups = "disabled"
# ddos_protection = false
# activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id]
#}
#resource "vultr_block_storage" "cinder-aio5" {
# size_gb = 100
# region = "ewr"
# label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio5.id
#}
#resource "vultr_instance" "aio6" {
# plan = "vc2-16c-64gb"
# region = "ewr"
# os_id = "448"
# label = "aio6"
# tag = "advancedlsa aio" #NO infra tag
# hostname = "ala-aio6"
# enable_ipv6 = false
# backups = "disabled"
# ddos_protection = false
# activation_email = false
# script_id = "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd"
# ssh_key_ids = [vultr_ssh_key.terraform.id]
# private_network_ids = [vultr_private_network.mgmt2.id]
#}
#resource "vultr_block_storage" "cinder-aio6" {
# size_gb = 100
# region = "ewr"
# label = "ala-storage-cinder-aio"
# attached_to_instance = vultr_instance.aio6.id
#}

View File

@ -1,7 +1,7 @@
{ {
"version": 4, "version": 4,
"terraform_version": "1.1.5", "terraform_version": "1.1.2",
"serial": 574, "serial": 351,
"lineage": "9182161d-2dda-d6b4-a789-8481586b33b1", "lineage": "9182161d-2dda-d6b4-a789-8481586b33b1",
"outputs": {}, "outputs": {},
"resources": [ "resources": [
@ -60,13 +60,13 @@
{ {
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"attached_to_instance": "4d7f75d3-d8c4-4e83-877d-2fb53cb8a62c", "attached_to_instance": "209a8c17-bb53-469f-bef3-29c6a9410737",
"cost": 10, "cost": 10,
"date_created": "2022-02-07T21:46:11+00:00", "date_created": "2022-01-05T18:29:07+00:00",
"id": "310f2d34-3d2a-43df-99b4-b773a38236ce", "id": "eb6edfd9-e32a-4dc6-9032-f330eede04d8",
"label": "ala-storage-cinder", "label": "ala-storage-cinder",
"live": false, "live": false,
"mount_id": "ewr-310f2d343d2a43", "mount_id": "ewr-eb6edfd9e32a4d",
"region": "ewr", "region": "ewr",
"size_gb": 100, "size_gb": 100,
"status": "active" "status": "active"
@ -74,9 +74,105 @@
"sensitive_attributes": [], "sensitive_attributes": [],
"private": "bnVsbA==", "private": "bnVsbA==",
"dependencies": [ "dependencies": [
"vultr_ssh_key.terraform",
"vultr_instance.storage1", "vultr_instance.storage1",
"vultr_private_network.mgmt", "vultr_private_network.mgmt",
"vultr_private_network.storage", "vultr_private_network.storage"
]
}
]
},
{
"mode": "managed",
"type": "vultr_block_storage",
"name": "cinder-aio",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attached_to_instance": "6cf69964-82f2-4b2f-8d93-84aea4089bee",
"cost": 10,
"date_created": "2022-01-10T04:36:55+00:00",
"id": "32fdc5e6-923d-4759-b6d3-f322a7b4060f",
"label": "ala-storage-cinder-aio",
"live": false,
"mount_id": "ewr-32fdc5e6923d47",
"region": "ewr",
"size_gb": 100,
"status": "active"
},
"sensitive_attributes": [],
"private": "bnVsbA==",
"dependencies": [
"vultr_instance.aio1",
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_instance",
"name": "aio1",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"activation_email": false,
"allowed_bandwidth": 4000,
"app_id": 0,
"backups": "disabled",
"backups_schedule": [],
"date_created": "2022-01-10T04:36:22+00:00",
"ddos_protection": false,
"default_password": "c-6LUzJ#.?pm6#-N",
"disk": 160,
"enable_ipv6": false,
"enable_private_network": false,
"features": [],
"firewall_group_id": "",
"gateway_v4": "45.76.166.1",
"hostname": "ala-aio1",
"id": "6cf69964-82f2-4b2f-8d93-84aea4089bee",
"image_id": null,
"internal_ip": "172.29.220.3",
"iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8aVhDTG1Oc2hUanlKSVZsaWpwUzdxcjJYZk1jYXJKZ098GT2EOwaj4Vgnypy41F299S-2HjASncmlhinN6wh2hr4Cx5cKRZ2Km6hWUVNvK8X-MUNPOrYSz1csXDIZeN4KFt_7w11rnAHgeL5lv8nKqM3eoC_pVMR9L6BglsoxSFtLCrv_aTQbQU3C1iRX6zcs2pahp0RY6Ey83yfNez1HB8vuQzsrPsYt6TQnXRJxfYe61Eir7vnz",
"label": "aio1",
"main_ip": "45.76.167.39",
"netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64",
"os_id": 448,
"plan": "vc2-4c-8gb",
"power_status": "running",
"private_network_ids": [
"e11bbba9-c00a-4e88-bf49-075b880692c3"
],
"ram": 8192,
"region": "ewr",
"reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "installingbooting",
"snapshot_id": null,
"ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792"
],
"status": "active",
"tag": "advancedlsa infra aio",
"timeouts": null,
"user_data": null,
"v6_main_ip": "",
"v6_network": "",
"v6_network_size": 0,
"vcpu_count": 4
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjozNjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjM2MDAwMDAwMDAwMDB9fQ==",
"dependencies": [
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform" "vultr_ssh_key.terraform"
] ]
} }
@ -96,23 +192,23 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-12T20:48:15+00:00", "date_created": "2022-01-09T20:27:40+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "Kq2.st%(RP78bCah", "default_password": "tV*3t]k3Xc)G5NVb",
"disk": 110, "disk": 110,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "45.76.0.1", "gateway_v4": "207.148.22.1",
"hostname": "ala-compute1", "hostname": "ala-compute1",
"id": "c6c23822-ddba-4e08-8507-65d49feb280f", "id": "a9847f8a-200c-43b3-abea-a9af32f2dbb3",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8b250XzBjR0FudFBEcEpiaDI2OF9pYjB6VHY1aWhWNXB8_d9QS1bR2jM1gsv8bem4u7RrqSRMsY0fG5lFm70lj3ap9CrXqec_XIhIxzNs5LPg_RIpWdzBDDmVEJv4Zaw-scHGTKLSNrK8i7bkMRcFSM6NLAzjRX-zMMWXwCPpcPm1Tv9hFAQQctPijReRudVo_nY-0tNHL1J6vzzX_5aH-3Z8Ejq94buowJ3LzwomH-LpHQFsPjJjUV0ADg", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8dlBjVjdZM2tSYnpsS2RlRmxXTktweWhXSjhYMWQ3em5838IPdW9SwKilZxhtTqLvFvU1PRtGA2jHmG4rBfuAiFme79Duv8twHqvf2mEfskOuQfIdhxy6TZKBB4HXu5BPNJZUG47x6sDGMttaTWSLQ2LLahTpHcyhp5izqt2mFhGsPovPVmhdHTqTYO8rAKmUg3okbbH6TeoGWTWHfCFteDI4QverAkw0bb8b42jHgh9s04fTYHzuoYV3NQ",
"label": "compute1", "label": "compute1",
"main_ip": "45.76.1.95", "main_ip": "207.148.22.142",
"netmask_v4": "255.255.254.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
@ -127,7 +223,7 @@
"region": "ewr", "region": "ewr",
"reserved_ip_id": null, "reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd", "script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "installingbooting", "server_status": "ok",
"snapshot_id": null, "snapshot_id": null,
"ssh_key_ids": [ "ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792" "f57eb103-38ce-4a82-a5de-3ffcf1646792"
@ -166,24 +262,24 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-12T20:48:15+00:00", "date_created": "2022-01-09T20:27:40+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "_N9e#?e$3QWn12C)", "default_password": "wZ)4G]}5D{PhJJ%6",
"disk": 110, "disk": 110,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "108.61.78.193", "gateway_v4": "45.63.6.1",
"hostname": "ala-infra1", "hostname": "ala-infra1",
"id": "fa0c5097-6ae6-4a5a-a0ae-89d9684c5c1d", "id": "5b39b538-dac4-4e24-aa27-92cef55bb754",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8QlZyOGszcUxaVkVRWjFidkx1aFl5Snd1SjZQT0dqVk985cLdsJjwxbsRUA46xwUUyEQr8bdJp2ZAmLMJ3RVsT2yfsFvXUyMoqDzY47T8jk5mKxd4mS4rPZ-quaGBmWzv55cNCERI0DC-U0SqM7XgvCkhWyUr3shdEp6P8XZHNEo0Va28BWkceJGoQHGVaqGT8tYaTSnTVzQpM3tlDNn8SFcoi7qlayC64J_EQCoV2Q5zFoIUZpKBZlc", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8aHptN0ZwaFJyWmdBaGJJX0lDaE95RzJoTlRfSXQ4Mkp8fQR1NCARr90dbc-r7ArsXvf5wGow2tyWo5fKB93T6P745b30GZAtAkUi-sRRJn-xXC7tsrg0_yz8bxBm4D494B_YZkZt_aHbi0JvzPn9YbMDi5RIfNcRufvphYOvQUAMhtqRbfi8w79J5q5-KFp941G1zcJeFEjql9BB_8lA9chUv34zw1DAFhXp39jRAQn4pBtyYdFl0fM",
"label": "infra1", "label": "infra1",
"main_ip": "108.61.78.236", "main_ip": "45.63.6.161",
"netmask_v4": "255.255.255.192", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
"plan": "vdc-4c-16gb", "plan": "vdc-4c-16gb",
@ -197,7 +293,7 @@
"region": "ewr", "region": "ewr",
"reserved_ip_id": null, "reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd", "script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "installingbooting", "server_status": "ok",
"snapshot_id": null, "snapshot_id": null,
"ssh_key_ids": [ "ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792" "f57eb103-38ce-4a82-a5de-3ffcf1646792"
@ -236,23 +332,23 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-12T20:48:15+00:00", "date_created": "2022-01-09T20:27:39+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "4g%KAboY7fpgT9#q", "default_password": "c1V=cpd#.KBkjT[V",
"disk": 80, "disk": 80,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "45.77.144.1", "gateway_v4": "45.63.20.1",
"hostname": "ala-storage1", "hostname": "ala-storage1",
"id": "4d7f75d3-d8c4-4e83-877d-2fb53cb8a62c", "id": "209a8c17-bb53-469f-bef3-29c6a9410737",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8QTlISk4wNnhseXRTWU1XRTNoYzF3UU5wRGp1cWY0c2x8HjtxsSItPk5rsLKhzzB3pICKe9BHapJl5ZsfZR_YxRj0rmKSSbNuFuwoNCYNKWyMmBDlASic0iD0CA5mMfqfAEZwG2lMcRO9RK_y0pdg9TYFlpwNFe66BKk1VdvBdgsodLZDv10SOHROO_NuGBIGA5W8xlMPnWtf2Y2Y5YwIyyxQdIXPSRsTtLzQUQAKZgydujRqt29BvjUZ", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8bGVDOHZfR3AxNTFkYlU2dEtPWm5nM25GQ0J6b1VJNld80RkGvpXx06ol-QpUxLvFEhnA6N7IElPnc11bf_vyEjWPwk8v0yVSSGYhJfLYkQ7T1tq40vRkWyD1c8BiEQa9ggLAKRlOP48He447i4d6JicxYY03owS4O8sZNvJlYsk1ZUhI_ofo0dLj_oOslH_IwCVblnaZWlo99_83lcF5ER9oM6as6ao4033Ee9yQGKOnBZbM_pihxKu4jA",
"label": "storage1", "label": "storage1",
"main_ip": "45.77.144.28", "main_ip": "45.63.20.88",
"netmask_v4": "255.255.254.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
@ -266,7 +362,7 @@
"region": "ewr", "region": "ewr",
"reserved_ip_id": null, "reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd", "script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "installingbooting", "server_status": "ok",
"snapshot_id": null, "snapshot_id": null,
"ssh_key_ids": [ "ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792" "f57eb103-38ce-4a82-a5de-3ffcf1646792"

View File

@ -1,7 +1,7 @@
{ {
"version": 4, "version": 4,
"terraform_version": "1.1.5", "terraform_version": "1.1.2",
"serial": 558, "serial": 350,
"lineage": "9182161d-2dda-d6b4-a789-8481586b33b1", "lineage": "9182161d-2dda-d6b4-a789-8481586b33b1",
"outputs": {}, "outputs": {},
"resources": [ "resources": [
@ -60,13 +60,13 @@
{ {
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"attached_to_instance": "bc723c9c-eae5-4f9b-9554-95d2924aaaca", "attached_to_instance": "209a8c17-bb53-469f-bef3-29c6a9410737",
"cost": 10, "cost": 10,
"date_created": "2022-02-07T21:46:11+00:00", "date_created": "2022-01-05T18:29:07+00:00",
"id": "310f2d34-3d2a-43df-99b4-b773a38236ce", "id": "eb6edfd9-e32a-4dc6-9032-f330eede04d8",
"label": "ala-storage-cinder", "label": "ala-storage-cinder",
"live": false, "live": false,
"mount_id": "ewr-310f2d343d2a43", "mount_id": "ewr-eb6edfd9e32a4d",
"region": "ewr", "region": "ewr",
"size_gb": 100, "size_gb": 100,
"status": "active" "status": "active"
@ -74,10 +74,10 @@
"sensitive_attributes": [], "sensitive_attributes": [],
"private": "bnVsbA==", "private": "bnVsbA==",
"dependencies": [ "dependencies": [
"vultr_ssh_key.terraform",
"vultr_instance.storage1", "vultr_instance.storage1",
"vultr_private_network.mgmt", "vultr_private_network.mgmt",
"vultr_private_network.storage", "vultr_private_network.storage"
"vultr_ssh_key.terraform"
] ]
} }
] ]
@ -91,7 +91,7 @@
{ {
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"attached_to_instance": "c0d2a6f1-160d-49a6-9f4c-064fd13f5763", "attached_to_instance": "6cf69964-82f2-4b2f-8d93-84aea4089bee",
"cost": 10, "cost": 10,
"date_created": "2022-01-10T04:36:55+00:00", "date_created": "2022-01-10T04:36:55+00:00",
"id": "32fdc5e6-923d-4759-b6d3-f322a7b4060f", "id": "32fdc5e6-923d-4759-b6d3-f322a7b4060f",
@ -112,96 +112,6 @@
} }
] ]
}, },
{
"mode": "managed",
"type": "vultr_block_storage",
"name": "cinder-aio2",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attached_to_instance": "acc242da-c48f-4f36-8c7d-8f3e63cb805b",
"cost": 10,
"date_created": "2022-01-26T02:07:06+00:00",
"id": "54637727-2eeb-49fd-90dc-10c84f8db98a",
"label": "ala-storage-cinder-aio",
"live": false,
"mount_id": "ewr-546377272eeb49",
"region": "ewr",
"size_gb": 100,
"status": "active"
},
"sensitive_attributes": [],
"private": "bnVsbA==",
"dependencies": [
"vultr_instance.aio2",
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_block_storage",
"name": "cinder-aio3",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attached_to_instance": "f569916f-3b07-454f-b45e-02e51dcc2493",
"cost": 10,
"date_created": "2022-02-06T20:01:23+00:00",
"id": "2cf2e1a9-9a53-430a-b67a-c15171ea0a40",
"label": "ala-storage-cinder-aio",
"live": false,
"mount_id": "ewr-2cf2e1a99a5343",
"region": "ewr",
"size_gb": 100,
"status": "active"
},
"sensitive_attributes": [],
"private": "bnVsbA==",
"dependencies": [
"vultr_instance.aio3",
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_block_storage",
"name": "cinder-aio4",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attached_to_instance": "e84fb371-83e3-481d-b78b-d82fc6f2e8a8",
"cost": 10,
"date_created": "2022-02-06T23:43:40+00:00",
"id": "edbfad6e-1087-4e65-8279-357063c253f8",
"label": "ala-storage-cinder-aio",
"live": false,
"mount_id": "ewr-edbfad6e10874e",
"region": "ewr",
"size_gb": 100,
"status": "active"
},
"sensitive_attributes": [],
"private": "bnVsbA==",
"dependencies": [
"vultr_instance.aio4",
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{ {
"mode": "managed", "mode": "managed",
"type": "vultr_instance", "type": "vultr_instance",
@ -209,6 +119,7 @@
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]", "provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [ "instances": [
{ {
"status": "tainted",
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"activation_email": false, "activation_email": false,
@ -216,23 +127,23 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-04T04:02:24+00:00", "date_created": "2022-01-10T04:36:22+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "!1Dz3z$#h_%Uq=8_", "default_password": "c-6LUzJ#.?pm6#-N",
"disk": 160, "disk": 160,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "140.82.40.1", "gateway_v4": "45.76.166.1",
"hostname": "ala-aio1", "hostname": "ala-aio1",
"id": "c0d2a6f1-160d-49a6-9f4c-064fd13f5763", "id": "6cf69964-82f2-4b2f-8d93-84aea4089bee",
"image_id": null, "image_id": null,
"internal_ip": "172.29.220.3", "internal_ip": "172.29.220.3",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8UTM1bENHRjhiNG5LMnFkMWFWVlRxeU5EUERnUVBCa0Z8oMF6IjCl3pwoUw6oJ-6kG-zljg3-s1GhSTYafr7MdAghAEzKBS7yzgqDFDiii8l3__SNeMYHKxgGJEPbkxArxiDGtAykMfvfqID4vjVdGEKau3BohqkZOIRUWUFx7TqPWuhrh4fHj_1Dg4U-cEVNnwMYVa7sIXtFwAPJPbVuiey8PnbSUWMrW7cs-Y1ufFO-w9Ew-Y2V", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8aVhDTG1Oc2hUanlKSVZsaWpwUzdxcjJYZk1jYXJKZ098GT2EOwaj4Vgnypy41F299S-2HjASncmlhinN6wh2hr4Cx5cKRZ2Km6hWUVNvK8X-MUNPOrYSz1csXDIZeN4KFt_7w11rnAHgeL5lv8nKqM3eoC_pVMR9L6BglsoxSFtLCrv_aTQbQU3C1iRX6zcs2pahp0RY6Ey83yfNez1HB8vuQzsrPsYt6TQnXRJxfYe61Eir7vnz",
"label": "aio1", "label": "aio1",
"main_ip": "140.82.41.130", "main_ip": "45.76.167.39",
"netmask_v4": "255.255.254.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
@ -245,211 +156,13 @@
"region": "ewr", "region": "ewr",
"reserved_ip_id": null, "reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd", "script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "ok", "server_status": "installingbooting",
"snapshot_id": null, "snapshot_id": null,
"ssh_key_ids": [ "ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792" "f57eb103-38ce-4a82-a5de-3ffcf1646792"
], ],
"status": "active", "status": "active",
"tag": "advancedlsa aio", "tag": "advancedlsa infra aio",
"timeouts": null,
"user_data": null,
"v6_main_ip": "",
"v6_network": "",
"v6_network_size": 0,
"vcpu_count": 4
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjozNjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjM2MDAwMDAwMDAwMDB9fQ==",
"dependencies": [
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_instance",
"name": "aio2",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"activation_email": false,
"allowed_bandwidth": 4000,
"app_id": 0,
"backups": "disabled",
"backups_schedule": [],
"date_created": "2022-02-05T22:05:46+00:00",
"ddos_protection": false,
"default_password": "L8[y+GY#WZyof)Km",
"disk": 160,
"enable_ipv6": false,
"enable_private_network": false,
"features": [],
"firewall_group_id": "",
"gateway_v4": "64.154.38.1",
"hostname": "ala-aio2",
"id": "acc242da-c48f-4f36-8c7d-8f3e63cb805b",
"image_id": null,
"internal_ip": "172.29.220.4",
"iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8X3pjNmJjQnZaMklRXzk0T3FkZEswbFJXRTVrVm9BdDR8vygO3hPWj9Lgb4ge1iAEhcCDZnpBjHUzrxI1IRpzSw2TXvyV-OspydaWlj87wsDsM_3DqT6ERG26SH0sL-LDPxypBGzeh-rSEAjW-CmRDwFwi0fVC9fOnHUHmcoxed6WQXfv-QWPdQ15-msWLC7vXbUZoKEtWVRyoUbCTeZftlGdd9_sc8MswLNZrKq0rcI6nlzX0VOL",
"label": "aio2",
"main_ip": "64.154.38.77",
"netmask_v4": "255.255.255.0",
"os": "Rocky Linux x64",
"os_id": 448,
"plan": "vc2-4c-8gb",
"power_status": "running",
"private_network_ids": [
"e11bbba9-c00a-4e88-bf49-075b880692c3"
],
"ram": 8192,
"region": "ewr",
"reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "ok",
"snapshot_id": null,
"ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792"
],
"status": "active",
"tag": "advancedlsa aio",
"timeouts": null,
"user_data": null,
"v6_main_ip": "",
"v6_network": "",
"v6_network_size": 0,
"vcpu_count": 4
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjozNjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjM2MDAwMDAwMDAwMDB9fQ==",
"dependencies": [
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_instance",
"name": "aio3",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"activation_email": false,
"allowed_bandwidth": 4000,
"app_id": 0,
"backups": "disabled",
"backups_schedule": [],
"date_created": "2022-02-06T20:03:33+00:00",
"ddos_protection": false,
"default_password": "Jz9-.S]CW,C,4(SZ",
"disk": 160,
"enable_ipv6": false,
"enable_private_network": false,
"features": [],
"firewall_group_id": "",
"gateway_v4": "45.32.5.1",
"hostname": "ala-aio3",
"id": "f569916f-3b07-454f-b45e-02e51dcc2493",
"image_id": null,
"internal_ip": "172.29.220.5",
"iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8dWFwOG1QT0ozVzZacTRPZmxxT0VEaVhldW5UR3gtZDZ8yshtgBuoVy2-iHF2qlaSnWyetcSeD7AtXtYyXUldP0KRldwY_ljvnMNOkifBXyc1blPWkeIo4LFrpwTRj6saJmnOrjC132X4xZiVHJtKZdQBAzPQ8eh7mZBWZPGPn29TorALb4vQWbtXEHrXDhnvl956LJDQhq1VmUCaqkZLZ8OFnuc6gPlmB2VxN9-34mzuJdYRbuEy",
"label": "aio3",
"main_ip": "45.32.5.54",
"netmask_v4": "255.255.255.0",
"os": "Rocky Linux x64",
"os_id": 448,
"plan": "vc2-4c-8gb",
"power_status": "running",
"private_network_ids": [
"e11bbba9-c00a-4e88-bf49-075b880692c3"
],
"ram": 8192,
"region": "ewr",
"reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "ok",
"snapshot_id": null,
"ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792"
],
"status": "active",
"tag": "advancedlsa aio",
"timeouts": null,
"user_data": null,
"v6_main_ip": "",
"v6_network": "",
"v6_network_size": 0,
"vcpu_count": 4
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjozNjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjM2MDAwMDAwMDAwMDB9fQ==",
"dependencies": [
"vultr_private_network.mgmt2",
"vultr_ssh_key.terraform"
]
}
]
},
{
"mode": "managed",
"type": "vultr_instance",
"name": "aio4",
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"activation_email": false,
"allowed_bandwidth": 4000,
"app_id": 0,
"backups": "disabled",
"backups_schedule": [],
"date_created": "2022-02-06T23:58:24+00:00",
"ddos_protection": false,
"default_password": "cM%5b}c3,]WjAsEn",
"disk": 160,
"enable_ipv6": false,
"enable_private_network": false,
"features": [],
"firewall_group_id": "",
"gateway_v4": "207.246.90.1",
"hostname": "ala-aio4",
"id": "e84fb371-83e3-481d-b78b-d82fc6f2e8a8",
"image_id": null,
"internal_ip": "172.29.220.6",
"iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8eDV3bzZZOHo4Q0JFejh1OEtyM1BNU3NTcWFsWDA4VWF8CrgZR4IgBO9LLgps3kw5B1-KaFS5q9dl_1_exgtcBhZ61LKTXIrqQpzdlmoYPbMUQm2jS9No1G6I1vBThssyo_8JIXyfFwMgIvP5roA5XUDrYgn3c5ALQDnyq-ZdnvcuPkH2IwVsz7vP58Szx048kN78X0BUmbn7iba_LnHbr_78h-r9O1LMrc1kXLUaRCOE9VNz8uI",
"label": "aio4",
"main_ip": "207.246.90.98",
"netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64",
"os_id": 448,
"plan": "vc2-4c-8gb",
"power_status": "running",
"private_network_ids": [
"e11bbba9-c00a-4e88-bf49-075b880692c3"
],
"ram": 8192,
"region": "ewr",
"reserved_ip_id": null,
"script_id": "0eeabbfb-2d2f-4797-a85a-82d3e1f235bd",
"server_status": "ok",
"snapshot_id": null,
"ssh_key_ids": [
"f57eb103-38ce-4a82-a5de-3ffcf1646792"
],
"status": "active",
"tag": "advancedlsa aio",
"timeouts": null, "timeouts": null,
"user_data": null, "user_data": null,
"v6_main_ip": "", "v6_main_ip": "",
@ -473,7 +186,6 @@
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]", "provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [ "instances": [
{ {
"status": "tainted",
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"activation_email": false, "activation_email": false,
@ -481,23 +193,23 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-07T22:48:54+00:00", "date_created": "2022-01-09T20:27:40+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "]P6j_Mro!?kgn?[)", "default_password": "tV*3t]k3Xc)G5NVb",
"disk": 110, "disk": 110,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "149.28.234.1", "gateway_v4": "207.148.22.1",
"hostname": "ala-compute1", "hostname": "ala-compute1",
"id": "82183496-739f-4f76-b3d2-7b6caa5b4784", "id": "a9847f8a-200c-43b3-abea-a9af32f2dbb3",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8MlBOTndGVVU5VlJ3OGd2eDU2WkhyZlNOck00WFo2c0h8Gta2M15iTVao1LILTrpb9c0967yqjOYLYBPfxRJ1NeFf8ogYrX2mp8Zg5r0GJMbQSJW9eAYRerQRMFUouVw6o0A8wsQZ2UGToNQdfL2bF6htNZ6Tyy3SiMYfE4LhGhb7X814MlAQk89jMjLuIJ59O6H6wUALBUyjm5NBw7U7_2FjRoStMtLko1djMPqmaQdytjCk3-Faa8Zsiw", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8dlBjVjdZM2tSYnpsS2RlRmxXTktweWhXSjhYMWQ3em5838IPdW9SwKilZxhtTqLvFvU1PRtGA2jHmG4rBfuAiFme79Duv8twHqvf2mEfskOuQfIdhxy6TZKBB4HXu5BPNJZUG47x6sDGMttaTWSLQ2LLahTpHcyhp5izqt2mFhGsPovPVmhdHTqTYO8rAKmUg3okbbH6TeoGWTWHfCFteDI4QverAkw0bb8b42jHgh9s04fTYHzuoYV3NQ",
"label": "compute1", "label": "compute1",
"main_ip": "149.28.235.72", "main_ip": "207.148.22.142",
"netmask_v4": "255.255.254.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
@ -544,7 +256,6 @@
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]", "provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [ "instances": [
{ {
"status": "tainted",
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"activation_email": false, "activation_email": false,
@ -552,23 +263,23 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-07T22:48:54+00:00", "date_created": "2022-01-09T20:27:40+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "_2tWg3KQqKoCPsa{", "default_password": "wZ)4G]}5D{PhJJ%6",
"disk": 110, "disk": 110,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "207.148.22.1", "gateway_v4": "45.63.6.1",
"hostname": "ala-infra1", "hostname": "ala-infra1",
"id": "3ed345db-7bb6-4865-b958-8afe2df67235", "id": "5b39b538-dac4-4e24-aa27-92cef55bb754",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8aW9sc210Nl80Mi1fUnVGRlRGNXpOaW5GTUR1NmhJQWt8dAmz-C5jKXjf-Vr4r8AYGmc86FbXX3LNN0NDF-nmtQI4ZAdQO2B9wZjVUe50FmM-tB3hnbj78H-Zqa4XPtAlIgCIbBLUQktIf7B5LyIdmdzaF70iPUNA0PcRrzToZvqtDjNZx8Od5VlmGgpnsnM9PTK2OhYk_3FIVE_7hZenxVDbhLiSEKTPIpWJwYlOjFdpGQEHUDcHwcY", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8aHptN0ZwaFJyWmdBaGJJX0lDaE95RzJoTlRfSXQ4Mkp8fQR1NCARr90dbc-r7ArsXvf5wGow2tyWo5fKB93T6P745b30GZAtAkUi-sRRJn-xXC7tsrg0_yz8bxBm4D494B_YZkZt_aHbi0JvzPn9YbMDi5RIfNcRufvphYOvQUAMhtqRbfi8w79J5q5-KFp941G1zcJeFEjql9BB_8lA9chUv34zw1DAFhXp39jRAQn4pBtyYdFl0fM",
"label": "infra1", "label": "infra1",
"main_ip": "207.148.23.90", "main_ip": "45.63.6.161",
"netmask_v4": "255.255.254.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
@ -615,7 +326,6 @@
"provider": "provider[\"registry.terraform.io/vultr/vultr\"]", "provider": "provider[\"registry.terraform.io/vultr/vultr\"]",
"instances": [ "instances": [
{ {
"status": "tainted",
"schema_version": 0, "schema_version": 0,
"attributes": { "attributes": {
"activation_email": false, "activation_email": false,
@ -623,24 +333,24 @@
"app_id": 0, "app_id": 0,
"backups": "disabled", "backups": "disabled",
"backups_schedule": [], "backups_schedule": [],
"date_created": "2022-02-07T22:48:54+00:00", "date_created": "2022-01-09T20:27:39+00:00",
"ddos_protection": false, "ddos_protection": false,
"default_password": "3R]o9r[orgrQ7Y3H", "default_password": "c1V=cpd#.KBkjT[V",
"disk": 80, "disk": 80,
"enable_ipv6": false, "enable_ipv6": false,
"enable_private_network": false, "enable_private_network": false,
"features": [], "features": [],
"firewall_group_id": "", "firewall_group_id": "",
"gateway_v4": "104.238.128.1", "gateway_v4": "45.63.20.1",
"hostname": "ala-storage1", "hostname": "ala-storage1",
"id": "bc723c9c-eae5-4f9b-9554-95d2924aaaca", "id": "209a8c17-bb53-469f-bef3-29c6a9410737",
"image_id": null, "image_id": null,
"internal_ip": "", "internal_ip": "",
"iso_id": null, "iso_id": null,
"kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8bWRlb1JYYS1kTEJ6Vi1iaGJfRlVONkNnU3J4OERXcVp8BWXjYiqhMKEQTKYavXHPm-IqWcfayCbCJgSpwbDY4cysstheJQZW68OS38WJp2ag3ldR9zkShQxG7zeIh6cvHSyF-c6S3-gFPHOvqmS3cyNRcfdplBQThjzqYiwc1xekAaWUanop31WolmlGz0g89fP2tp3OIuNLdw0zhJRYERgp_QY08XyU6TATsZZifdFu8JXNAsED7vcaNw", "kvm": "https://my.vultr.com/subs/vps/novnc/api.php?data=djJ8bGVDOHZfR3AxNTFkYlU2dEtPWm5nM25GQ0J6b1VJNld80RkGvpXx06ol-QpUxLvFEhnA6N7IElPnc11bf_vyEjWPwk8v0yVSSGYhJfLYkQ7T1tq40vRkWyD1c8BiEQa9ggLAKRlOP48He447i4d6JicxYY03owS4O8sZNvJlYsk1ZUhI_ofo0dLj_oOslH_IwCVblnaZWlo99_83lcF5ER9oM6as6ao4033Ee9yQGKOnBZbM_pihxKu4jA",
"label": "storage1", "label": "storage1",
"main_ip": "104.238.130.249", "main_ip": "45.63.20.88",
"netmask_v4": "255.255.252.0", "netmask_v4": "255.255.254.0",
"os": "Rocky Linux x64", "os": "Rocky Linux x64",
"os_id": 448, "os_id": 448,
"plan": "vc2-2c-4gb", "plan": "vc2-2c-4gb",