Merge pull request 'Porting changes from upstream' (#2) from InfraScience/infrastructure-as-code:main into main
Reviewed-on: mauro.mugnaini/infrastructure-as-code#2
This commit is contained in:
commit
5d9909b813
|
@ -46,3 +46,4 @@ terraform.rc
|
||||||
*.lock.hcl
|
*.lock.hcl
|
||||||
|
|
||||||
.project
|
.project
|
||||||
|
openstack-tf/modules/ssh-key-ref/terraform.tfstate
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Module used
|
||||||
|
module "ssh_settings" {
|
||||||
|
source = "../../modules/ssh-key-ref"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Instances
|
||||||
|
resource "openstack_compute_instance_v2" "access_service_dev" {
|
||||||
|
name = "access"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_medium
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 30
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
access_service_dev = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["access", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Access access"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,512 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.7.4",
|
||||||
|
"serial": 25,
|
||||||
|
"lineage": "b02df62e-fde6-6c33-ed5c-624a54e2b07d",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.29.247",
|
||||||
|
"ca_cidr": "10.1.29.247/32",
|
||||||
|
"haproxy_l7_1": "10.1.28.50",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.28.50/32",
|
||||||
|
"haproxy_l7_2": "10.1.30.241",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.30.241/32",
|
||||||
|
"octavia_main": "10.1.28.227",
|
||||||
|
"octavia_main_cidr": "10.1.28.227/32",
|
||||||
|
"prometheus": "10.1.30.129",
|
||||||
|
"prometheus_cidr": "10.1.30.129/32",
|
||||||
|
"ssh_jump": "10.1.29.164",
|
||||||
|
"ssh_jump_cidr": "10.1.29.164/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-dev-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-dev.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.109",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science DEV main router",
|
||||||
|
"id": "2ae28c5f-036b-45db-bc9f-5bab8fa3e914",
|
||||||
|
"name": "d4s-dev-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.28.50",
|
||||||
|
"10.1.30.241"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science DEV private network (use this as the main network)",
|
||||||
|
"name": "d4s-dev-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "e0af5eba-f24a-4d0d-8184-bc654b980c4a",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.31.254",
|
||||||
|
"allocation_start": "10.1.28.30",
|
||||||
|
"cidr": "10.1.28.0/22",
|
||||||
|
"description": "D4Science DEV main private subnet",
|
||||||
|
"gateway_ip": "10.1.28.1",
|
||||||
|
"name": "d4s-dev-cloud-sub"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "lb-dev-l4",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "e8f8ca72f30648a8b389b4e745ac83a9"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "access_service_dev",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.29.106",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 30,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-03-14 17:22:40 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "613569ae-36aa-4440-96b9-0bfc760d2334",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Marco Procaccini",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "access",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.29.106",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:06:7c:be",
|
||||||
|
"name": "d4s-dev-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e0af5eba-f24a-4d0d-8184-bc654b980c4a"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-03-14 17:23:20 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "access_service_dev",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Access access",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488/1df31040-e622-47eb-ba04-3351851009a4",
|
||||||
|
"name": "access.cloud-dev.d4science.org.",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-dev.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,65 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
auth_d = {
|
||||||
|
name = "auth-d",
|
||||||
|
description = "This instance is a Authorization service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 20
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
auth-d = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["auth-d", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Authorization auth-d"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-dev"
|
||||||
|
}
|
|
@ -0,0 +1,524 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 8,
|
||||||
|
"lineage": "5c181534-e215-5b78-32e5-7901710ee61a",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.29.247",
|
||||||
|
"ca_cidr": "10.1.29.247/32",
|
||||||
|
"haproxy_l7_1": "10.1.28.50",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.28.50/32",
|
||||||
|
"haproxy_l7_2": "10.1.30.241",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.30.241/32",
|
||||||
|
"octavia_main": "10.1.28.227",
|
||||||
|
"octavia_main_cidr": "10.1.28.227/32",
|
||||||
|
"prometheus": "10.1.30.129",
|
||||||
|
"prometheus_cidr": "10.1.30.129/32",
|
||||||
|
"ssh_jump": "10.1.29.164",
|
||||||
|
"ssh_jump_cidr": "10.1.29.164/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-dev-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-dev.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.109",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science DEV main router",
|
||||||
|
"id": "2ae28c5f-036b-45db-bc9f-5bab8fa3e914",
|
||||||
|
"name": "d4s-dev-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.28.50",
|
||||||
|
"10.1.30.241"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science DEV private network (use this as the main network)",
|
||||||
|
"name": "d4s-dev-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "e0af5eba-f24a-4d0d-8184-bc654b980c4a",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.31.254",
|
||||||
|
"allocation_start": "10.1.28.30",
|
||||||
|
"cidr": "10.1.28.0/22",
|
||||||
|
"description": "D4Science DEV main private subnet",
|
||||||
|
"gateway_ip": "10.1.28.1",
|
||||||
|
"name": "d4s-dev-cloud-sub"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "lb-dev-l4",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "e8f8ca72f30648a8b389b4e745ac83a9"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth-d",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Authorization auth-d",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488/a597f62b-bceb-4e26-917d-dc685743e84e",
|
||||||
|
"name": "auth-d.cloud-dev.d4science.org.",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-dev.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth_d",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.28.143",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-15 17:29:24 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "a9cf8e63-53db-4dad-94b9-2c7ae30bb055",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "auth-d",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.28.143",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:8d:06:39",
|
||||||
|
"name": "d4s-dev-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e0af5eba-f24a-4d0d-8184-bc654b980c4a"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.2.189",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:77:b6:6a",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "00422a4a-4b8b-4c85-acf9-ef733df842b9"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-15 17:30:07 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
echo "Do not use"
|
# echo "Do not use"
|
||||||
|
|
||||||
# Define required providers
|
# Define required providers
|
||||||
terraform {
|
terraform {
|
||||||
|
|
|
@ -54,3 +54,12 @@ module "instance_without_data_volume" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "openstack_dns_recordset_v2" "keycloak_dev_dns_recordset" {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["accounts"], [data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Keycloak d4science dev endpoint"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [join(".", ["main-lb"], [data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])]
|
||||||
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.5",
|
"terraform_version": "1.6.6",
|
||||||
"serial": 7,
|
"serial": 9,
|
||||||
"lineage": "2d09d087-e2e3-bb5d-0474-c09dfa4c7145",
|
"lineage": "2d09d087-e2e3-bb5d-0474-c09dfa4c7145",
|
||||||
"outputs": {},
|
"outputs": {},
|
||||||
"resources": [
|
"resources": [
|
||||||
|
@ -86,12 +86,15 @@
|
||||||
"c1_large": "c1.large",
|
"c1_large": "c1.large",
|
||||||
"c1_medium": "c1.medium",
|
"c1_medium": "c1.medium",
|
||||||
"c1_small": "c1.small",
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
"m1_large": "m1.large",
|
"m1_large": "m1.large",
|
||||||
"m1_medium": "m1.medium",
|
"m1_medium": "m1.medium",
|
||||||
"m1_xlarge": "m1.xlarge",
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
"m2_large": "m2.large",
|
"m2_large": "m2.large",
|
||||||
"m2_medium": "m2.medium",
|
"m2_medium": "m2.medium",
|
||||||
"m2_small": "m2.small"
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
},
|
},
|
||||||
"floating_ip_pools": {
|
"floating_ip_pools": {
|
||||||
"main_public_ip_pool": "external-network"
|
"main_public_ip_pool": "external-network"
|
||||||
|
@ -128,6 +131,7 @@
|
||||||
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
"mtu_size": 8942,
|
"mtu_size": 8942,
|
||||||
"networks_list": {
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
"orientdb": "orientdb-net",
|
"orientdb": "orientdb-net",
|
||||||
"orientdb_se": "orientdb-se-net",
|
"orientdb_se": "orientdb-se-net",
|
||||||
"shared_postgresql": "postgresql-srv-net",
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
@ -142,6 +146,7 @@
|
||||||
"isti_net": "146.48.80.0/21",
|
"isti_net": "146.48.80.0/21",
|
||||||
"s2i2s_net": "146.48.28.0/22"
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
},
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
"octavia_information": {
|
"octavia_information": {
|
||||||
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
"main_lb_hostname": "main-lb",
|
"main_lb_hostname": "main-lb",
|
||||||
|
@ -161,7 +166,7 @@
|
||||||
"prometheus_server_data": {
|
"prometheus_server_data": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -183,11 +188,12 @@
|
||||||
"default": "default",
|
"default": "default",
|
||||||
"docker_swarm": "Docker Swarm",
|
"docker_swarm": "Docker Swarm",
|
||||||
"docker_swarm_NFS": "Docker Swarm NFS",
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
"haproxy": "HAPROXY L7",
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
"http_and_https_from_the_load_balancers": "http and https from the load balancers",
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
"limited_HTTPS_access": "Limited HTTPS access",
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
"limited_SSH_access": "Limited SSH access",
|
"limited_SSH_access": "Limited SSH access",
|
||||||
"mongo": "mongo",
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
"postgreSQL": "PostgreSQL service",
|
"postgreSQL": "PostgreSQL service",
|
||||||
"public_HTTPS": "Public HTTPS"
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
@ -219,6 +225,8 @@
|
||||||
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
"shell_d4s_cidr": "146.48.122.95/32"
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
},
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
"ubuntu_1804": {
|
"ubuntu_1804": {
|
||||||
|
@ -319,6 +327,7 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
"octavia_information": [
|
"octavia_information": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
|
@ -363,6 +372,8 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
"ubuntu1804_data_file": "string",
|
"ubuntu1804_data_file": "string",
|
||||||
"ubuntu2204_data_file": "string",
|
"ubuntu2204_data_file": "string",
|
||||||
"ubuntu_1804": [
|
"ubuntu_1804": [
|
||||||
|
@ -410,6 +421,38 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "keycloak_dev_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Keycloak d4science dev endpoint",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488/effa71d2-37ff-4237-9a6e-86f4c2e1c53f",
|
||||||
|
"name": "accounts.cloud-dev.d4science.org.",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-dev.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "openstack_objectstorage_container_v1",
|
"type": "openstack_objectstorage_container_v1",
|
||||||
|
@ -512,10 +555,10 @@
|
||||||
"scheduler_hints": [],
|
"scheduler_hints": [],
|
||||||
"security_groups": [
|
"security_groups": [
|
||||||
"default",
|
"default",
|
||||||
"http and https from the load balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 15:48:18 +0000 UTC",
|
"updated": "2023-12-14 15:48:18 +0000 UTC",
|
||||||
"user_data": "bb83b25fd1219aa1b850ece9be8d7b0f31714608",
|
"user_data": "bb83b25fd1219aa1b850ece9be8d7b0f31714608",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.5",
|
"terraform_version": "1.6.6",
|
||||||
"serial": 8,
|
"serial": 14,
|
||||||
"lineage": "194691ec-f344-4bd2-98ae-cbd15e9c9cdf",
|
"lineage": "194691ec-f344-4bd2-98ae-cbd15e9c9cdf",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"almalinux_9": {
|
"almalinux_9": {
|
||||||
|
@ -134,12 +134,15 @@
|
||||||
"c1_large": "c1.large",
|
"c1_large": "c1.large",
|
||||||
"c1_medium": "c1.medium",
|
"c1_medium": "c1.medium",
|
||||||
"c1_small": "c1.small",
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
"m1_large": "m1.large",
|
"m1_large": "m1.large",
|
||||||
"m1_medium": "m1.medium",
|
"m1_medium": "m1.medium",
|
||||||
"m1_xlarge": "m1.xlarge",
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
"m2_large": "m2.large",
|
"m2_large": "m2.large",
|
||||||
"m2_medium": "m2.medium",
|
"m2_medium": "m2.medium",
|
||||||
"m2_small": "m2.small"
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
},
|
},
|
||||||
"type": [
|
"type": [
|
||||||
"map",
|
"map",
|
||||||
|
@ -230,6 +233,7 @@
|
||||||
},
|
},
|
||||||
"networks_list": {
|
"networks_list": {
|
||||||
"value": {
|
"value": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
"orientdb": "orientdb-net",
|
"orientdb": "orientdb-net",
|
||||||
"orientdb_se": "orientdb-se-net",
|
"orientdb_se": "orientdb-se-net",
|
||||||
"shared_postgresql": "postgresql-srv-net",
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
@ -255,6 +259,10 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": {
|
||||||
|
"value": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"octavia_information": {
|
"octavia_information": {
|
||||||
"value": {
|
"value": {
|
||||||
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
@ -293,7 +301,7 @@
|
||||||
"value": {
|
"value": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -333,11 +341,12 @@
|
||||||
"default": "default",
|
"default": "default",
|
||||||
"docker_swarm": "Docker Swarm",
|
"docker_swarm": "Docker Swarm",
|
||||||
"docker_swarm_NFS": "Docker Swarm NFS",
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
"haproxy": "HAPROXY L7",
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
"http_and_https_from_the_load_balancers": "http and https from the load balancers",
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
"limited_HTTPS_access": "Limited HTTPS access",
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
"limited_SSH_access": "Limited SSH access",
|
"limited_SSH_access": "Limited SSH access",
|
||||||
"mongo": "mongo",
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
"postgreSQL": "PostgreSQL service",
|
"postgreSQL": "PostgreSQL service",
|
||||||
"public_HTTPS": "Public HTTPS"
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
@ -398,6 +407,14 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"storage_nfs_network_id": {
|
||||||
|
"value": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"storage_nfs_subnet_id": {
|
||||||
|
"value": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"ubuntu1804_data_file": {
|
"ubuntu1804_data_file": {
|
||||||
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -593,6 +610,61 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_rule_v2",
|
||||||
|
"name": "egress_ipv4_allowed",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Allow the egress traffic from the NFS port",
|
||||||
|
"direction": "egress",
|
||||||
|
"ethertype": "IPv4",
|
||||||
|
"id": "b6f234e2-db03-4b25-899d-725217796ae0",
|
||||||
|
"port_range_max": 0,
|
||||||
|
"port_range_min": 0,
|
||||||
|
"protocol": "",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"remote_group_id": "",
|
||||||
|
"remote_ip_prefix": "0.0.0.0/0",
|
||||||
|
"security_group_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"tenant_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"openstack_networking_secgroup_v2.nfs_share_no_ingress"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_v2",
|
||||||
|
"name": "nfs_share_no_ingress",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"all_tags": [],
|
||||||
|
"delete_default_rules": true,
|
||||||
|
"description": "Security rule that must be assigned to the NFS ports",
|
||||||
|
"id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"name": "nfs_share_no_ingress",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"tags": [],
|
||||||
|
"tenant_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "openstack_networking_subnet_v2",
|
"type": "openstack_networking_subnet_v2",
|
||||||
|
|
|
@ -0,0 +1,97 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# SSH settings
|
||||||
|
module "ssh_settings" {
|
||||||
|
source = "../../modules/ssh-key-ref"
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Create a NFS share
|
||||||
|
resource "openstack_sharedfilesystem_share_v2" "redmine_dev" {
|
||||||
|
name = "redmine_dev_nfs_share"
|
||||||
|
description = "NFS share for the dev redmine"
|
||||||
|
share_proto = "NFS"
|
||||||
|
size = 5
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_port_v2" "redmine_nfs_port" {
|
||||||
|
name = "redmine_nfs_port"
|
||||||
|
network_id = data.terraform_remote_state.privnet_dns_router.outputs.storage_nfs_network_id
|
||||||
|
admin_state_up = "true"
|
||||||
|
fixed_ip {
|
||||||
|
subnet_id = data.terraform_remote_state.privnet_dns_router.outputs.storage_nfs_subnet_id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_port_secgroup_associate_v2" "redmine_nfs_port_secgroup" {
|
||||||
|
port_id = openstack_networking_port_v2.redmine_nfs_port.id
|
||||||
|
security_group_ids = [
|
||||||
|
data.terraform_remote_state.privnet_dns_router.outputs.nfs_share_no_ingress_secgroup_id
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_instance_v2" "redmine" {
|
||||||
|
name = "redmine-dev"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zones_names.availability_zone_no_gpu
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_medium
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.default, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.nfs_share_no_ingress]
|
||||||
|
block_device {
|
||||||
|
uuid = data.terraform_remote_state.privnet_dns_router.outputs.ubuntu_2204.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 20
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = true
|
||||||
|
}
|
||||||
|
network {
|
||||||
|
name = data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name
|
||||||
|
}
|
||||||
|
network {
|
||||||
|
name = module.common_variables.shared_postgresql_server_data.network_name
|
||||||
|
}
|
||||||
|
user_data = file("${data.terraform_remote_state.privnet_dns_router.outputs.ubuntu2204_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_interface_attach_v2" "nfs_port_to_redmine" {
|
||||||
|
instance_id = openstack_compute_instance_v2.redmine.id
|
||||||
|
port_id = openstack_networking_port_v2.redmine_nfs_port.id
|
||||||
|
}
|
||||||
|
|
||||||
|
# Allow access to the NFS share
|
||||||
|
resource "openstack_sharedfilesystem_share_access_v2" "redmine_dev_nfs_share_access" {
|
||||||
|
share_id = openstack_sharedfilesystem_share_v2.redmine_dev.id
|
||||||
|
access_type = "ip"
|
||||||
|
access_to = openstack_compute_interface_attach_v2.nfs_port_to_redmine.fixed_ip
|
||||||
|
access_level = "rw"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
output "nfs_port_data" {
|
||||||
|
value = openstack_compute_interface_attach_v2.nfs_port_to_redmine
|
||||||
|
}
|
||||||
|
|
||||||
|
output "redmine_nfs_volume_data" {
|
||||||
|
value = openstack_sharedfilesystem_share_v2.redmine_dev
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-dev"
|
||||||
|
}
|
|
@ -0,0 +1,792 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 19,
|
||||||
|
"lineage": "e609cf3f-5517-b905-f141-3e44c69a358a",
|
||||||
|
"outputs": {
|
||||||
|
"nfs_port_data": {
|
||||||
|
"value": {
|
||||||
|
"fixed_ip": "172.17.2.12",
|
||||||
|
"id": "3ba0a5f7-9eea-4986-ad9c-404ba2237857/effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"instance_id": "3ba0a5f7-9eea-4986-ad9c-404ba2237857",
|
||||||
|
"network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"port_id": "effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"fixed_ip": "string",
|
||||||
|
"id": "string",
|
||||||
|
"instance_id": "string",
|
||||||
|
"network_id": "string",
|
||||||
|
"port_id": "string",
|
||||||
|
"region": "string",
|
||||||
|
"timeouts": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"create": "string",
|
||||||
|
"delete": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"redmine_nfs_volume_data": {
|
||||||
|
"value": {
|
||||||
|
"all_metadata": {},
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"description": "NFS share for the dev redmine",
|
||||||
|
"export_locations": [
|
||||||
|
{
|
||||||
|
"path": "172.17.0.7:/volumes/_nogroup/24e94d6a-2d45-4852-bb24-1602881df2f3/5c12125e-4336-483a-9bac-bbfc83b084c9",
|
||||||
|
"preferred": "false"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"has_replicas": false,
|
||||||
|
"host": "",
|
||||||
|
"id": "42900a39-6251-441f-b535-0b18931c4cf3",
|
||||||
|
"is_public": false,
|
||||||
|
"metadata": null,
|
||||||
|
"name": "redmine_dev_nfs_share",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"replication_type": "",
|
||||||
|
"share_network_id": "",
|
||||||
|
"share_proto": "NFS",
|
||||||
|
"share_server_id": "",
|
||||||
|
"share_type": "default",
|
||||||
|
"size": 5,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"all_metadata": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone": "string",
|
||||||
|
"description": "string",
|
||||||
|
"export_locations": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string",
|
||||||
|
"preferred": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"has_replicas": "bool",
|
||||||
|
"host": "string",
|
||||||
|
"id": "string",
|
||||||
|
"is_public": "bool",
|
||||||
|
"metadata": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"name": "string",
|
||||||
|
"project_id": "string",
|
||||||
|
"region": "string",
|
||||||
|
"replication_type": "string",
|
||||||
|
"share_network_id": "string",
|
||||||
|
"share_proto": "string",
|
||||||
|
"share_server_id": "string",
|
||||||
|
"share_type": "string",
|
||||||
|
"size": "number",
|
||||||
|
"snapshot_id": "string",
|
||||||
|
"timeouts": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"create": "string",
|
||||||
|
"delete": "string",
|
||||||
|
"update": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.29.247",
|
||||||
|
"ca_cidr": "10.1.29.247/32",
|
||||||
|
"haproxy_l7_1": "10.1.28.50",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.28.50/32",
|
||||||
|
"haproxy_l7_2": "10.1.30.241",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.30.241/32",
|
||||||
|
"octavia_main": "10.1.28.227",
|
||||||
|
"octavia_main_cidr": "10.1.28.227/32",
|
||||||
|
"prometheus": "10.1.30.129",
|
||||||
|
"prometheus_cidr": "10.1.30.129/32",
|
||||||
|
"ssh_jump": "10.1.29.164",
|
||||||
|
"ssh_jump_cidr": "10.1.29.164/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-dev-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-dev.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.109",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science DEV main router",
|
||||||
|
"id": "2ae28c5f-036b-45db-bc9f-5bab8fa3e914",
|
||||||
|
"name": "d4s-dev-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.28.50",
|
||||||
|
"10.1.30.241"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science DEV private network (use this as the main network)",
|
||||||
|
"name": "d4s-dev-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "e0af5eba-f24a-4d0d-8184-bc654b980c4a",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.31.254",
|
||||||
|
"allocation_start": "10.1.28.30",
|
||||||
|
"cidr": "10.1.28.0/22",
|
||||||
|
"description": "D4Science DEV main private subnet",
|
||||||
|
"gateway_ip": "10.1.28.1",
|
||||||
|
"name": "d4s-dev-cloud-sub"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "lb-dev-l4",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "e8f8ca72f30648a8b389b4e745ac83a9"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "redmine",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.31.204",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": true,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-31 15:04:07 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "3ba0a5f7-9eea-4986-ad9c-404ba2237857",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "adellam",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "redmine-dev",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.31.204",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:4e:a5:f3",
|
||||||
|
"name": "d4s-dev-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e0af5eba-f24a-4d0d-8184-bc654b980c4a"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.2.99",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:b0:51:28",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "00422a4a-4b8b-4c85-acf9-ef733df842b9"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default",
|
||||||
|
"nfs_share_no_ingress",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-31 15:04:56 +0000 UTC",
|
||||||
|
"user_data": "bb83b25fd1219aa1b850ece9be8d7b0f31714608",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_interface_attach_v2",
|
||||||
|
"name": "nfs_port_to_redmine",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"fixed_ip": "172.17.2.12",
|
||||||
|
"id": "3ba0a5f7-9eea-4986-ad9c-404ba2237857/effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"instance_id": "3ba0a5f7-9eea-4986-ad9c-404ba2237857",
|
||||||
|
"network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"port_id": "effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_instance_v2.redmine",
|
||||||
|
"openstack_networking_port_v2.redmine_nfs_port"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_port_secgroup_associate_v2",
|
||||||
|
"name": "redmine_nfs_port_secgroup",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"all_security_group_ids": [
|
||||||
|
"5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"d1fc7c78-6426-4a18-b369-09fcf4fe6edf"
|
||||||
|
],
|
||||||
|
"enforce": false,
|
||||||
|
"id": "effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"port_id": "effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"security_group_ids": [
|
||||||
|
"5887da8d-e362-4509-93ac-8a70bf8baef9"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA==",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_networking_port_v2.redmine_nfs_port"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_port_v2",
|
||||||
|
"name": "redmine_nfs_port",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"admin_state_up": true,
|
||||||
|
"all_fixed_ips": [
|
||||||
|
"172.17.2.12"
|
||||||
|
],
|
||||||
|
"all_security_group_ids": [
|
||||||
|
"5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"d1fc7c78-6426-4a18-b369-09fcf4fe6edf"
|
||||||
|
],
|
||||||
|
"all_tags": [],
|
||||||
|
"allowed_address_pairs": [],
|
||||||
|
"binding": [
|
||||||
|
{
|
||||||
|
"host_id": "",
|
||||||
|
"profile": "",
|
||||||
|
"vif_details": {},
|
||||||
|
"vif_type": "",
|
||||||
|
"vnic_type": "normal"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "",
|
||||||
|
"device_id": "fa11c8b2-18d7-4688-a6f1-0ab78d6399ec",
|
||||||
|
"device_owner": "compute:cnr-isti-nova-a",
|
||||||
|
"dns_assignment": [
|
||||||
|
{
|
||||||
|
"fqdn": "host-172-17-2-12.openstacklocal.",
|
||||||
|
"hostname": "host-172-17-2-12",
|
||||||
|
"ip_address": "172.17.2.12"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dns_name": "",
|
||||||
|
"extra_dhcp_option": [],
|
||||||
|
"fixed_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "",
|
||||||
|
"subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"id": "effe8e41-22eb-4348-944f-cebd19b8957f",
|
||||||
|
"mac_address": "fa:16:3e:f5:57:88",
|
||||||
|
"name": "redmine_nfs_port",
|
||||||
|
"network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"no_fixed_ip": null,
|
||||||
|
"no_security_groups": null,
|
||||||
|
"port_security_enabled": true,
|
||||||
|
"qos_policy_id": "",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"security_group_ids": null,
|
||||||
|
"tags": [],
|
||||||
|
"tenant_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"timeouts": null,
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_sharedfilesystem_share_access_v2",
|
||||||
|
"name": "redmine_dev_nfs_share_access",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_key": "",
|
||||||
|
"access_level": "rw",
|
||||||
|
"access_to": "172.17.2.12",
|
||||||
|
"access_type": "ip",
|
||||||
|
"id": "dec8bf74-c50d-4841-a278-3786b12b591f",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"share_id": "42900a39-6251-441f-b535-0b18931c4cf3",
|
||||||
|
"state": "active",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_instance_v2.redmine",
|
||||||
|
"openstack_compute_interface_attach_v2.nfs_port_to_redmine",
|
||||||
|
"openstack_networking_port_v2.redmine_nfs_port",
|
||||||
|
"openstack_sharedfilesystem_share_v2.redmine_dev"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_sharedfilesystem_share_v2",
|
||||||
|
"name": "redmine_dev",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"all_metadata": {},
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"description": "NFS share for the dev redmine",
|
||||||
|
"export_locations": [
|
||||||
|
{
|
||||||
|
"path": "172.17.0.7:/volumes/_nogroup/24e94d6a-2d45-4852-bb24-1602881df2f3/5c12125e-4336-483a-9bac-bbfc83b084c9",
|
||||||
|
"preferred": "false"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"has_replicas": false,
|
||||||
|
"host": "",
|
||||||
|
"id": "42900a39-6251-441f-b535-0b18931c4cf3",
|
||||||
|
"is_public": false,
|
||||||
|
"metadata": null,
|
||||||
|
"name": "redmine_dev_nfs_share",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"replication_type": "",
|
||||||
|
"share_network_id": "",
|
||||||
|
"share_proto": "NFS",
|
||||||
|
"share_server_id": "",
|
||||||
|
"share_type": "default",
|
||||||
|
"size": 5,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "variables" {
|
||||||
|
source = "../variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "ssh_keys" {
|
||||||
|
source = "../../modules/ssh_keys"
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-dev"
|
||||||
|
}
|
|
@ -0,0 +1,429 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.7.4",
|
||||||
|
"serial": 3,
|
||||||
|
"lineage": "48e9b647-6c03-4b28-7033-9e1d40b3795d",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.29.247",
|
||||||
|
"ca_cidr": "10.1.29.247/32",
|
||||||
|
"haproxy_l7_1": "10.1.28.50",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.28.50/32",
|
||||||
|
"haproxy_l7_2": "10.1.30.241",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.30.241/32",
|
||||||
|
"octavia_main": "10.1.28.227",
|
||||||
|
"octavia_main_cidr": "10.1.28.227/32",
|
||||||
|
"prometheus": "10.1.30.129",
|
||||||
|
"prometheus_cidr": "10.1.30.129/32",
|
||||||
|
"ssh_jump": "10.1.29.164",
|
||||||
|
"ssh_jump_cidr": "10.1.29.164/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-dev-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-dev.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.109",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science DEV main router",
|
||||||
|
"id": "2ae28c5f-036b-45db-bc9f-5bab8fa3e914",
|
||||||
|
"name": "d4s-dev-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.28.50",
|
||||||
|
"10.1.30.241"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science DEV private network (use this as the main network)",
|
||||||
|
"name": "d4s-dev-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "e0af5eba-f24a-4d0d-8184-bc654b980c4a",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.31.254",
|
||||||
|
"allocation_start": "10.1.28.30",
|
||||||
|
"cidr": "10.1.28.0/22",
|
||||||
|
"description": "D4Science DEV main private subnet",
|
||||||
|
"gateway_ip": "10.1.28.1",
|
||||||
|
"name": "d4s-dev-cloud-sub"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "lb-dev-l4",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "e8f8ca72f30648a8b389b4e745ac83a9"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.ssh_keys",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_keypair_v2",
|
||||||
|
"name": "initial_ssh_key",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"fingerprint": "c8:e0:f5:3d:5b:31:5e:f0:bf:e2:d6:b7:e5:1b:8a:6a",
|
||||||
|
"id": "Marco Procaccini",
|
||||||
|
"name": "Marco Procaccini",
|
||||||
|
"private_key": "",
|
||||||
|
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWabEzyFoWbwIkxq3Y9GF2VuRAfglZZxDwvyRgQEAeohF0ue+whk9fN91gI58hW8hEiW3RBt6R1Stp9Gk9lTzKpqtP591A0UsStGTt7D2cXbOS+X2Hj3uAeKwYmtV2AB4l5xzEluK2adWBSBpMZW+pqSjd6ifLR0TsiRcZ9LSaoa3aAqxv55pmeVrlETi9qMvJi083g72LOO/8k02Ea1VAstBoJ1niyaQ69sqVZDTvUSsjjUSla1AxA2cAS/5wjhHOlcuRdxqxuEmqYaCgexmKcRUYoFOWYnYU2iHgi9Ksg2NEr4tn6tQnNKlk7qD3OgIgoyGKhwOxq/Vap5nlO/DGJ6eQbGoK+27SqV9QrM8bj4Et23diTCfUfS96OyLGBjRYAPG50POUtpgXfn/RjhGS8rX4QMKM0ZysAWFAxUMDNFobE9ieXNTrLFh4f9cpVKN0aGooBak4gAdKiAwdqv+Q3DGrBYoz0m7crKUN/hWdXq57B2FaJUVTf/rIzK+cThE= marco@procpc\n",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"user_id": "",
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"type": "get_attr",
|
||||||
|
"value": "public_key"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,71 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_with_data_volume" {
|
||||||
|
source = "../../modules/instance_with_data_volume"
|
||||||
|
|
||||||
|
instances_with_data_volume_map = {
|
||||||
|
thredds1 = {
|
||||||
|
name = "thredds1",
|
||||||
|
description = "Thredds dev instance",
|
||||||
|
flavor = module.common_variables.flavor_list.m2_small,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804,
|
||||||
|
image_volume_size = 20
|
||||||
|
volume = {
|
||||||
|
name = "thredds1_data_volume",
|
||||||
|
size = "280",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
thredds1 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["thredds1", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Thredds thredds1"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-dev"
|
||||||
|
}
|
|
@ -0,0 +1,577 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 7,
|
||||||
|
"lineage": "5d2f6ed3-379d-993a-46a5-4f1f7adb1dab",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.29.247",
|
||||||
|
"ca_cidr": "10.1.29.247/32",
|
||||||
|
"haproxy_l7_1": "10.1.28.50",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.28.50/32",
|
||||||
|
"haproxy_l7_2": "10.1.30.241",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.30.241/32",
|
||||||
|
"octavia_main": "10.1.28.227",
|
||||||
|
"octavia_main_cidr": "10.1.28.227/32",
|
||||||
|
"prometheus": "10.1.30.129",
|
||||||
|
"prometheus_cidr": "10.1.30.129/32",
|
||||||
|
"ssh_jump": "10.1.29.164",
|
||||||
|
"ssh_jump_cidr": "10.1.29.164/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-dev-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-dev.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.109",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science DEV main router",
|
||||||
|
"id": "2ae28c5f-036b-45db-bc9f-5bab8fa3e914",
|
||||||
|
"name": "d4s-dev-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.28.50",
|
||||||
|
"10.1.30.241"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science DEV private network (use this as the main network)",
|
||||||
|
"name": "d4s-dev-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "e0af5eba-f24a-4d0d-8184-bc654b980c4a",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.31.254",
|
||||||
|
"allocation_start": "10.1.28.30",
|
||||||
|
"cidr": "10.1.28.0/22",
|
||||||
|
"description": "D4Science DEV main private subnet",
|
||||||
|
"gateway_ip": "10.1.28.1",
|
||||||
|
"name": "d4s-dev-cloud-sub"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "2aa977f2-80b4-447c-a6b0-dfa06bf68751",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science DEV",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "lb-dev-l4",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "e8f8ca72f30648a8b389b4e745ac83a9"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "HAPROXY L7",
|
||||||
|
"http_and_https_from_the_load_balancers": "http and https from the load balancers",
|
||||||
|
"limited_HTTPS_access": "Limited HTTPS access",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Thredds thredds1",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488/40b567cb-7ba4-47ba-83de-2b300ac2afee",
|
||||||
|
"name": "thredds1.cloud-dev.d4science.org.",
|
||||||
|
"project_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-dev.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "cbae638a-9d99-44aa-946c-0f5ffb7fc488"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_blockstorage_volume_v3",
|
||||||
|
"name": "instance_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "24d966e9-13ef-4e08-8fba-c334eb63f51b",
|
||||||
|
"instance_id": "b7039dac-cad3-4774-b446-feb391d3d539"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
|
"id": "24d966e9-13ef-4e08-8fba-c334eb63f51b",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "thredds1_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 280,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "instance_with_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.29.210",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-30 11:46:59 +0000 UTC",
|
||||||
|
"flavor_id": "10",
|
||||||
|
"flavor_name": "m2.small",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "b7039dac-cad3-4774-b446-feb391d3d539",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "adellam",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "thredds1",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.29.210",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:a2:7f:dd",
|
||||||
|
"name": "d4s-dev-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e0af5eba-f24a-4d0d-8184-bc654b980c4a"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default",
|
||||||
|
"http and https from the load balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-30 11:47:42 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_volume_attach_v2",
|
||||||
|
"name": "attach_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "b7039dac-cad3-4774-b446-feb391d3d539/24d966e9-13ef-4e08-8fba-c334eb63f51b",
|
||||||
|
"instance_id": "b7039dac-cad3-4774-b446-feb391d3d539",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "24d966e9-13ef-4e08-8fba-c334eb63f51b"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -1,25 +0,0 @@
|
||||||
# This file is maintained automatically by "terraform init".
|
|
||||||
# Manual edits may be lost in future updates.
|
|
||||||
|
|
||||||
provider "registry.terraform.io/terraform-provider-openstack/openstack" {
|
|
||||||
version = "1.53.0"
|
|
||||||
constraints = "~> 1.53.0"
|
|
||||||
hashes = [
|
|
||||||
"h1:YLGvYkSuagyP5orUTyKNK+JhzS17EFTUDpZ5R5/fFv4=",
|
|
||||||
"h1:ZSJPqrlaHQ3sj7wyJuPSG+NblFZbAA6Y0d3GjSJf3o8=",
|
|
||||||
"zh:09da7ca98ffd3de7b9ce36c4c13446212a6e763ba1162be71b50f95d453cb68e",
|
|
||||||
"zh:14041bcbb87312411d88612056ed185650bfd01284b8ea0761ce8105a331708e",
|
|
||||||
"zh:35bf4c788fdbc17c8e40ebc7b33c7de4b45a2fa2efaa657b10f0e3bd37c9627f",
|
|
||||||
"zh:46ede8ef4cfa12d654c538afc1e1ec34a1f3e8eb4e986ee23dceae398b7176a6",
|
|
||||||
"zh:59675734990dab1e8d87997853ea75e8104bba730b3f5a7146ac735540c9d6bf",
|
|
||||||
"zh:6de52428849806498670e827b54810be7510a2a79449602c1aede4235a0ec036",
|
|
||||||
"zh:78b2a20601272afceffac8f8ca78a6b647b84196c0dd8dc710fae297f6be15a4",
|
|
||||||
"zh:7c41ed3a4fac09677e676ecf9f9edd1e38eef449e656cb01a848d2c799c6de8f",
|
|
||||||
"zh:852800228f4118a4aa6cfaa4468b851247cbed6f037fd204f08de69eb1edc149",
|
|
||||||
"zh:86d618e7f9a07d978b8bc4b190be350a00de64ec535f9c8f5dfe133542a55483",
|
|
||||||
"zh:963a9e72b66d8bcf43de9b14a674ae3ca3719ce2f829217f7a65b66fc3773397",
|
|
||||||
"zh:a8e72ab67795071bda61f99a6de3d2d40122fb51971768fd75e1324abe874ced",
|
|
||||||
"zh:ce1890cf3af17d569af3bc7673cec0a8f78e6f5d701767593f3d29c551f44848",
|
|
||||||
"zh:e6f1b96eb684f527a47f71923f268c86a36d7894751b31ee9e726d7502a639cd",
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,63 +0,0 @@
|
||||||
# Define required providers
|
|
||||||
terraform {
|
|
||||||
required_version = ">= 0.14.0"
|
|
||||||
required_providers {
|
|
||||||
openstack = {
|
|
||||||
source = "terraform-provider-openstack/openstack"
|
|
||||||
version = "~> 1.53.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
data "terraform_remote_state" "privnet_dns_router" {
|
|
||||||
backend = "local"
|
|
||||||
|
|
||||||
config = {
|
|
||||||
path = "../project-setup/terraform.tfstate"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# Uses common_variables as module
|
|
||||||
#
|
|
||||||
module "common_variables" {
|
|
||||||
source = "../../modules/common_variables"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Creates the server group "uri-resolver"
|
|
||||||
#
|
|
||||||
resource "openstack_compute_servergroup_v2" "uri-resolver" {
|
|
||||||
name = "uri-resolver"
|
|
||||||
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
module "instance_without_data_volume" {
|
|
||||||
source = "../../modules/instance_without_data_volume"
|
|
||||||
|
|
||||||
instances_without_data_volume_map = {
|
|
||||||
# URI-Resolver instance 1
|
|
||||||
uri_resolver_service_i1 = {
|
|
||||||
name = "data-1",
|
|
||||||
description = "The data instance",
|
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
|
||||||
server_groups_ids = [openstack_compute_servergroup_v2.uri-resolver.id],
|
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
|
||||||
},
|
|
||||||
# URI-Resolver instance 2
|
|
||||||
uri_resolver_service_i2 = {
|
|
||||||
name = "data-2",
|
|
||||||
description = "The data1 instance",
|
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
|
||||||
server_groups_ids = [openstack_compute_servergroup_v2.uri-resolver.id],
|
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -33,3 +33,7 @@ output "main_haproxy_l7_ip" {
|
||||||
output "octavia_information" {
|
output "octavia_information" {
|
||||||
value = var.octavia_information
|
value = var.octavia_information
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "swarm_manila_interfaces_ip" {
|
||||||
|
value = var.swarm_manila_interfaces_ip
|
||||||
|
}
|
||||||
|
|
|
@ -82,3 +82,17 @@ variable "octavia_information" {
|
||||||
main_lb_hostname = "main-lb"
|
main_lb_hostname = "main-lb"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "swarm_manila_interfaces_ip" {
|
||||||
|
type = map(string)
|
||||||
|
default = {
|
||||||
|
"mgr_1" = "172.17.2.74"
|
||||||
|
"mgr_2" = "172.17.3.218"
|
||||||
|
"mgr_3" = "172.17.2.230"
|
||||||
|
"worker_1" = "172.17.0.166"
|
||||||
|
"worker_2" = "172.17.2.171"
|
||||||
|
"worker_3" = "172.17.0.146"
|
||||||
|
"worker_4" = "172.17.1.195"
|
||||||
|
"worker_5" = "172.17.2.187"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,631 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 4,
|
||||||
|
"lineage": "f42b6286-369c-9d4b-f90c-b7aca3f46bc1",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "accounting_service_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "586fbbe7-4a0c-4de5-bdb6-6b51048d40dc",
|
||||||
|
"members": [],
|
||||||
|
"name": "accounting-service",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "accounting_service_1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.34.208",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-03-01 15:20:54 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "d7591a45-f2a5-4008-83eb-00f1b6466690",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "pc-frosini_key",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "accounting-service-1",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.34.208",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:8b:4b:55",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.11.92",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:bd:6f:3a",
|
||||||
|
"name": "timescaledb-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "435ac20a-8bd9-4e49-a86b-69bdfcd6967b"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": null,
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "586fbbe7-4a0c-4de5-bdb6-6b51048d40dc",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-03-01 15:21:35 +0000 UTC",
|
||||||
|
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.accounting_service_server_group"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "accounting_service_2",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.156",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-03-01 15:20:54 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "f6d91d44-bb06-45c9-b96c-fa853bc06b08",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "pc-frosini_key",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "accounting-service-2",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.156",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:0b:30:18",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.11.76",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:91:d5:61",
|
||||||
|
"name": "timescaledb-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "435ac20a-8bd9-4e49-a86b-69bdfcd6967b"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": null,
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "586fbbe7-4a0c-4de5-bdb6-6b51048d40dc",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-03-01 15:21:43 +0000 UTC",
|
||||||
|
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.accounting_service_server_group"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,65 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
auth = {
|
||||||
|
name = "auth",
|
||||||
|
description = "This instance is a Authorization service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
auth = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["auth", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Authorization auth"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,528 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 3,
|
||||||
|
"lineage": "7c9621c0-69f9-50dd-1df3-8da0167edb90",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Authorization auth",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/da91f076-3fb6-4097-a33a-50eb455f2924",
|
||||||
|
"name": "auth.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.14",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-19 11:32:42 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "111103bc-df3f-4db1-836b-26f53fe54f71",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "auth",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.14",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:db:c5:ae",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.2.230",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:db:1d:35",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-19 11:33:27 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.6",
|
"terraform_version": "1.6.6",
|
||||||
"serial": 260,
|
"serial": 263,
|
||||||
"lineage": "6a53b692-c1a8-ed53-bc6c-b7fb5e017eb8",
|
"lineage": "6a53b692-c1a8-ed53-bc6c-b7fb5e017eb8",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"almalinux_9": {
|
"almalinux_9": {
|
||||||
|
@ -32,6 +32,26 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"value": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
"centos_7": {
|
"centos_7": {
|
||||||
"value": {
|
"value": {
|
||||||
"name": "CentOS-7",
|
"name": "CentOS-7",
|
||||||
|
@ -42,6 +62,23 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"default_security_group_name": {
|
||||||
|
"value": "default_for_all",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"dns_zone": {
|
||||||
|
"value": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
"el7_data_file": {
|
"el7_data_file": {
|
||||||
"value": "../../openstack_vm_data_scripts/el7.sh",
|
"value": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -60,6 +97,17 @@
|
||||||
"value": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
"value": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"external_router": {
|
||||||
|
"value": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
"flavor_list": {
|
"flavor_list": {
|
||||||
"value": {
|
"value": {
|
||||||
"c1_large": "c1.large",
|
"c1_large": "c1.large",
|
||||||
|
@ -126,6 +174,30 @@
|
||||||
"value": "10.1.32.20",
|
"value": "10.1.32.20",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"main_private_network": {
|
||||||
|
"value": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"main_private_subnet": {
|
||||||
|
"value": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
"main_region": {
|
"main_region": {
|
||||||
"value": "isti_area_pi_1",
|
"value": "isti_area_pi_1",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -161,6 +233,22 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"value": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
},
|
||||||
"os_project_data": {
|
"os_project_data": {
|
||||||
"value": {
|
"value": {
|
||||||
"id": "6fdc02e2827b405dad99f34698659742"
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
@ -186,7 +274,7 @@
|
||||||
"value": {
|
"value": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -347,31 +435,196 @@
|
||||||
"defaults": null,
|
"defaults": null,
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"value": {
|
"value": {
|
||||||
"almalinux9_img": {
|
"almalinux_9": {
|
||||||
"name": "AlmaLinux-9.0-20220718",
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
},
|
},
|
||||||
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
"centos7_img": {
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
"name": "CentOS-7",
|
"name": "CentOS-7",
|
||||||
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
},
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
"el7_datafile": "../../openstack_vm_data_scripts/el7.sh",
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
"external_gateway_ip": "146.48.30.241",
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
"external_network_name": "external-network",
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
"main_region_name": "isti_area_pi_1",
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
"mtu_size_value": 8942,
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
"resolvers_ip": [
|
"resolvers_ip": [
|
||||||
"146.48.29.97",
|
"146.48.29.97",
|
||||||
"146.48.29.98",
|
"146.48.29.98",
|
||||||
"146.48.29.99"
|
"146.48.29.99"
|
||||||
],
|
],
|
||||||
"ssh_sources_list": {
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
"infrascience_net_cidr": "146.48.122.0/23",
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
@ -379,54 +632,157 @@
|
||||||
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
"shell_d4s_cidr": "146.48.122.95/32"
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
},
|
},
|
||||||
"ubuntu1804_datafile": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"ubuntu1804_img": {
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
"name": "Ubuntu-Bionic-18.04",
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
},
|
},
|
||||||
"ubuntu2204_datafile": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
"ubuntu_2204": {
|
||||||
"ubuntu2204_img": {
|
|
||||||
"name": "Ubuntu-Jammy-22.04",
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": [
|
"type": [
|
||||||
"object",
|
"object",
|
||||||
{
|
{
|
||||||
"almalinux9_img": [
|
"almalinux_9": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"availability_zone_no_gpu_name": "string",
|
"availability_zone_no_gpu_name": "string",
|
||||||
"availability_zone_with_gpu_name": "string",
|
"availability_zone_with_gpu_name": "string",
|
||||||
"centos7_img": [
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"dns_zone_id": "string",
|
"dns_zone_id": "string",
|
||||||
"el7_datafile": "string",
|
"el7_data_file": "string",
|
||||||
"external_gateway_ip": "string",
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
"external_network_id": "string",
|
"external_network_id": "string",
|
||||||
"external_network_name": "string",
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
"main_private_network_id": "string",
|
"main_private_network_id": "string",
|
||||||
"main_region_name": "string",
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
"main_subnet_network_id": "string",
|
"main_subnet_network_id": "string",
|
||||||
"mtu_size_value": "number",
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
"resolvers_ip": [
|
"resolvers_ip": [
|
||||||
"list",
|
"list",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"ssh_sources_list": [
|
"resource_registry_addresses": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"ubuntu1804_datafile": "string",
|
"security_group_list": [
|
||||||
"ubuntu1804_img": [
|
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
"ubuntu2204_datafile": "string",
|
"shared_postgresql_server_data": [
|
||||||
"ubuntu2204_img": [
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
|
@ -2003,13 +2359,13 @@
|
||||||
"description": "Allow HTTPS from grafana.d4science.org",
|
"description": "Allow HTTPS from grafana.d4science.org",
|
||||||
"direction": "ingress",
|
"direction": "ingress",
|
||||||
"ethertype": "IPv4",
|
"ethertype": "IPv4",
|
||||||
"id": "b4335816-fd94-4107-9cdd-e97fd5f8dab5",
|
"id": "4a081ab2-579d-4cb0-b16d-cfb51f26aef4",
|
||||||
"port_range_max": 443,
|
"port_range_max": 443,
|
||||||
"port_range_min": 443,
|
"port_range_min": 443,
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
"region": "isti_area_pi_1",
|
"region": "isti_area_pi_1",
|
||||||
"remote_group_id": "",
|
"remote_group_id": "",
|
||||||
"remote_ip_prefix": "146.48.122.132/32",
|
"remote_ip_prefix": "146.48.28.103/32",
|
||||||
"security_group_id": "1a3161d4-00b1-411e-a3a6-5d3f1ec06483",
|
"security_group_id": "1a3161d4-00b1-411e-a3a6-5d3f1ec06483",
|
||||||
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
"timeouts": null
|
"timeouts": null
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Creates the server group "accounting-service"
|
||||||
|
#
|
||||||
|
resource "openstack_compute_servergroup_v2" "accounting_service_server_group" {
|
||||||
|
name = "accounting-service"
|
||||||
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/cassandra"
|
||||||
|
cassandra_nodes_count = 3
|
||||||
|
cassandra_node_flavor = module.common_variables.flavor_list.m1_medium
|
||||||
|
cassandra_server_data = {
|
||||||
|
node_name = "cassandra"
|
||||||
|
node_data_disk_size = 20
|
||||||
|
node_data_disk_device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
|
||||||
|
cassandra_tcp_ports_map = {
|
||||||
|
tcp_plain = {
|
||||||
|
description = "Cassandra TCP port 7000",
|
||||||
|
port_min = 7000,
|
||||||
|
port_max = 7000
|
||||||
|
},
|
||||||
|
tcp_tls = {
|
||||||
|
description = "Cassandra TLS TCP port 7001",
|
||||||
|
port_min = 7001,
|
||||||
|
port_max = 7001
|
||||||
|
},
|
||||||
|
tcp_transport = {
|
||||||
|
description = "Cassandra TCP transport 9042",
|
||||||
|
port_min = 9042,
|
||||||
|
port_max = 9042
|
||||||
|
},
|
||||||
|
rpc = {
|
||||||
|
description = "Cassandra TCP transport 9042",
|
||||||
|
port_min = 9160,
|
||||||
|
port_max = 9160
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,172 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
#Module used
|
||||||
|
module "ssh_settings" {
|
||||||
|
source = "../../modules/ssh-key-ref"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_v2" "dataminer_publish" {
|
||||||
|
name = "dataminer_publish"
|
||||||
|
description = "Access to dataminer-ghost is allowed only to dm-pool-manager"
|
||||||
|
delete_default_rules = "true"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_compute_instance_v2" "dm_pool_manager_pre" {
|
||||||
|
name = "dm-pool-manager-pre"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_large
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 30
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_1" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 22
|
||||||
|
port_range_max = 22
|
||||||
|
remote_ip_prefix = join("/",[openstack_compute_instance_v2.dm_pool_manager_pre.network.0.fixed_ip_v4,"32"])
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_2" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 80
|
||||||
|
port_range_max = 80
|
||||||
|
remote_ip_prefix = "0.0.0.0/0"
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_3" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 443
|
||||||
|
port_range_max = 443
|
||||||
|
remote_ip_prefix = join("/",[openstack_compute_instance_v2.dm_pool_manager_pre.network.0.fixed_ip_v4,"32"])
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
dataminer_pre_ghost = {
|
||||||
|
name = "dataminer-pre-ghost",
|
||||||
|
description = "This instance is a DataMiner Ghost service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [openstack_networking_secgroup_v2.dataminer_publish.name,data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 50
|
||||||
|
},
|
||||||
|
dataminer_1_pre_1804 = {
|
||||||
|
name = "dataminer1-pre-1804",
|
||||||
|
description = "This instance is a DataMiner service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 50
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
dm-pool-manager-pre = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dm-pool-manager-pre", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DM Pool Manager Preproduction"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer-pre-ghost = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer-pre-ghost", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner Preproduction Ghost"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer1-pre-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer1-pre-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 1 Pre 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,865 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 46,
|
||||||
|
"lineage": "36794155-bcfa-624c-516e-62e6c5034c73",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "dm_pool_manager_pre",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.85",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 30,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-19 14:07:19 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "545ec252-36b8-42a8-8ccd-aa9324537839",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "dm-pool-manager-pre",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.85",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:d0:ce:74",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-19 14:08:01 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_rule_v2",
|
||||||
|
"name": "secgroup_dataminer_publish_rule_1",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "",
|
||||||
|
"direction": "ingress",
|
||||||
|
"ethertype": "IPv4",
|
||||||
|
"id": "805c498d-e6ef-4466-99db-45218ee47cd7",
|
||||||
|
"port_range_max": 22,
|
||||||
|
"port_range_min": 22,
|
||||||
|
"protocol": "tcp",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"remote_group_id": "",
|
||||||
|
"remote_ip_prefix": "10.1.33.85/32",
|
||||||
|
"security_group_id": "fa1ed43b-5560-41eb-be4a-f66acb446ee1",
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_instance_v2.dm_pool_manager_pre",
|
||||||
|
"openstack_networking_secgroup_v2.dataminer_publish"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_rule_v2",
|
||||||
|
"name": "secgroup_dataminer_publish_rule_2",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "",
|
||||||
|
"direction": "ingress",
|
||||||
|
"ethertype": "IPv4",
|
||||||
|
"id": "dd015f50-8765-4c16-bcbb-83f6f3f070bf",
|
||||||
|
"port_range_max": 80,
|
||||||
|
"port_range_min": 80,
|
||||||
|
"protocol": "tcp",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"remote_group_id": "",
|
||||||
|
"remote_ip_prefix": "0.0.0.0/0",
|
||||||
|
"security_group_id": "fa1ed43b-5560-41eb-be4a-f66acb446ee1",
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"openstack_networking_secgroup_v2.dataminer_publish"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_rule_v2",
|
||||||
|
"name": "secgroup_dataminer_publish_rule_3",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "",
|
||||||
|
"direction": "ingress",
|
||||||
|
"ethertype": "IPv4",
|
||||||
|
"id": "cce9b287-bdb4-4dd2-8b9a-0444efef4b76",
|
||||||
|
"port_range_max": 443,
|
||||||
|
"port_range_min": 443,
|
||||||
|
"protocol": "tcp",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"remote_group_id": "",
|
||||||
|
"remote_ip_prefix": "10.1.33.85/32",
|
||||||
|
"security_group_id": "fa1ed43b-5560-41eb-be4a-f66acb446ee1",
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_instance_v2.dm_pool_manager_pre",
|
||||||
|
"openstack_networking_secgroup_v2.dataminer_publish"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_v2",
|
||||||
|
"name": "dataminer_publish",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"all_tags": [],
|
||||||
|
"delete_default_rules": true,
|
||||||
|
"description": "Access to dataminer-ghost is allowed only to dm-pool-manager",
|
||||||
|
"id": "fa1ed43b-5560-41eb-be4a-f66acb446ee1",
|
||||||
|
"name": "dataminer_publish",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"tags": null,
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "dataminer-pre-ghost",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "DataMiner Preproduction Ghost",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/016af6ff-ee98-40cb-9c16-868b1bdb863f",
|
||||||
|
"name": "dataminer-pre-ghost.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "dataminer1-pre-1804",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "DataMiner 1 Pre 1804",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/ec23cac5-691f-4530-8625-e5bb62b21e45",
|
||||||
|
"name": "dataminer1-pre-1804.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "dm-pool-manager-pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "DM Pool Manager Preproduction",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/d0f826d0-25e0-4ac6-9e21-164630ed8f04",
|
||||||
|
"name": "dm-pool-manager-pre.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "dataminer_1_pre_1804",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.34.182",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 50,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-22 11:03:53 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "5da038e7-b282-4de0-8f7a-f80467b61449",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "dataminer1-pre-1804",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.34.182",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:40:3c:2a",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.0.148",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:2f:72:9f",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-22 11:05:44 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_networking_secgroup_v2.dataminer_publish"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "dataminer_pre_ghost",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.32.170",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 50,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-22 11:03:53 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "06722ecf-556e-4a5c-99fc-d44a6147a5ce",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "dataminer-pre-ghost",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.32.170",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:54:79:54",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.2.221",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:86:3b:1b",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"dataminer_publish",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-22 11:06:43 +0000 UTC",
|
||||||
|
"user_data": "",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_networking_secgroup_v2.dataminer_publish"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,67 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_with_data_volume" {
|
||||||
|
source = "../../modules/instance_with_data_volume"
|
||||||
|
|
||||||
|
instances_with_data_volume_map = {
|
||||||
|
geonetwork1_pre = {
|
||||||
|
name = "geonetwork1-pre",
|
||||||
|
description = "This instance serves geonetwork service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
volume = {
|
||||||
|
name = "geonetwork1_pre_data_volume",
|
||||||
|
size = "20",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
geonetwork1-pre = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork1-pre", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork1-pre"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,588 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 19,
|
||||||
|
"lineage": "80fc3754-c1fc-b63b-a078-170496b36b2a",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork1-pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork1-pre",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/0bad49a2-0244-4714-8e03-e0923b135cec",
|
||||||
|
"name": "geonetwork1-pre.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_blockstorage_volume_v3",
|
||||||
|
"name": "instance_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
|
"id": "ab367e14-03ae-4cc6-980f-a7a72e418e35",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "geonetwork1_pre_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 20,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "instance_with_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.35.94",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-24 16:48:03 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "2b91c809-baea-4cd9-b623-920d7ad1f345",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "geonetwork1-pre",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.35.94",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:6a:e8:bc",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.3.132",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:33:0c:1a",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-24 16:48:43 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_volume_attach_v2",
|
||||||
|
"name": "attach_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "2b91c809-baea-4cd9-b623-920d7ad1f345/ab367e14-03ae-4cc6-980f-a7a72e418e35",
|
||||||
|
"instance_id": "2b91c809-baea-4cd9-b623-920d7ad1f345",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "ab367e14-03ae-4cc6-980f-a7a72e418e35"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,70 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_with_data_volume" {
|
||||||
|
source = "../../modules/instance_with_data_volume"
|
||||||
|
|
||||||
|
instances_with_data_volume_map = {
|
||||||
|
geoserver1_pre = {
|
||||||
|
name = "geoserver1-pre",
|
||||||
|
description = "Geoserver preprod instance",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804,
|
||||||
|
volume = {
|
||||||
|
name = "geoserver1_pre_data_volume",
|
||||||
|
size = "70",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
geoserver1-pre = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver1-pre", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver1-pre"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,594 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 7,
|
||||||
|
"lineage": "89065a12-d7ef-e97c-d514-fbacb3a932a3",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoserver1-pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver1-pre",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/3399d951-12bc-49b1-85b3-450d60ee90f0",
|
||||||
|
"name": "geoserver1-pre.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_blockstorage_volume_v3",
|
||||||
|
"name": "instance_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoserver1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "bfcc0649-29d2-484f-b6ee-a6e147197654",
|
||||||
|
"instance_id": "3ca3a73f-4ffa-4226-86b6-724c1f52719f"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
|
"id": "bfcc0649-29d2-484f-b6ee-a6e147197654",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "geoserver1_pre_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 70,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "instance_with_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoserver1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.78",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-25 10:54:01 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "3ca3a73f-4ffa-4226-86b6-724c1f52719f",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "adellam",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "geoserver1-pre",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.78",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:16:c7:a5",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.1.41",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:3b:f7:e4",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-25 10:54:47 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_volume_attach_v2",
|
||||||
|
"name": "attach_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoserver1_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "3ca3a73f-4ffa-4226-86b6-724c1f52719f/bfcc0649-29d2-484f-b6ee-a6e147197654",
|
||||||
|
"instance_id": "3ca3a73f-4ffa-4226-86b6-724c1f52719f",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "bfcc0649-29d2-484f-b6ee-a6e147197654"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -36,17 +36,8 @@ module "instance_without_data_volume" {
|
||||||
source = "../../modules/instance_without_data_volume"
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
instances_without_data_volume_map = {
|
instances_without_data_volume_map = {
|
||||||
grsf_publisher_1 = {
|
grsf_publisher = {
|
||||||
name = "grsf-publisher-1",
|
name = "grsf-publisher",
|
||||||
description = "This instance serves GRSF Publisher service",
|
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
|
||||||
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_server_group.id],
|
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
|
||||||
},
|
|
||||||
grsf_publisher_2 = {
|
|
||||||
name = "grsf-publisher-2",
|
|
||||||
description = "This instance serves GRSF Publisher service",
|
description = "This instance serves GRSF Publisher service",
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
|
|
@ -0,0 +1,525 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 3,
|
||||||
|
"lineage": "826c8593-6c3d-8568-c9e1-1a57900d69b3",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "grsf_publisher_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "8daab67e-ccab-40f7-bc76-84371a663dbf",
|
||||||
|
"members": [],
|
||||||
|
"name": "grsf-publisher",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "grsf_publisher",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.147",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-03-12 16:36:11 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "ee92a9cd-abb4-47a0-bee9-c9ffd9f22e1d",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "pc-frosini_key",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "grsf-publisher",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.147",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:fe:77:6f",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": null,
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "8daab67e-ccab-40f7-bc76-84371a663dbf",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-03-12 16:36:57 +0000 UTC",
|
||||||
|
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_server_group"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -25,6 +25,8 @@ module "liferay" {
|
||||||
vm_count = 2
|
vm_count = 2
|
||||||
vm_flavor = "m1.large"
|
vm_flavor = "m1.large"
|
||||||
boot_vol_size = 30
|
boot_vol_size = 30
|
||||||
|
share_description = "NFS share for the liferay preprod static data"
|
||||||
|
share_name = "liferay_pre_nfs_share"
|
||||||
}
|
}
|
||||||
|
|
||||||
liferay_ip_addrs = ["10.1.32.24", "10.1.32.25"]
|
liferay_ip_addrs = ["10.1.32.24", "10.1.32.25"]
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
output "liferay_data" {
|
||||||
|
value = module.liferay.liferay_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_ip_addrs" {
|
||||||
|
value = module.liferay.liferay_ip_addrs
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_recordsets" {
|
||||||
|
value = module.liferay.liferay_recordsets
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_port_data" {
|
||||||
|
value = module.liferay.nfs_port_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_volume_data" {
|
||||||
|
value = module.liferay.liferay_nfs_volume_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_volume_acls" {
|
||||||
|
value = module.liferay.liferay_nfs_volume_acls
|
||||||
|
sensitive = true
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.6",
|
"terraform_version": "1.6.6",
|
||||||
"serial": 34,
|
"serial": 40,
|
||||||
"lineage": "6d43430c-e6aa-d370-b6d5-22f2281117df",
|
"lineage": "6d43430c-e6aa-d370-b6d5-22f2281117df",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"almalinux_9": {
|
"almalinux_9": {
|
||||||
|
@ -234,6 +234,7 @@
|
||||||
},
|
},
|
||||||
"networks_list": {
|
"networks_list": {
|
||||||
"value": {
|
"value": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
"orientdb": "orientdb-net",
|
"orientdb": "orientdb-net",
|
||||||
"orientdb_se": "orientdb-se-net",
|
"orientdb_se": "orientdb-se-net",
|
||||||
"shared_postgresql": "postgresql-srv-net",
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
@ -259,6 +260,10 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": {
|
||||||
|
"value": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"octavia_information": {
|
"octavia_information": {
|
||||||
"value": {
|
"value": {
|
||||||
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
@ -300,7 +305,7 @@
|
||||||
"value": {
|
"value": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -345,6 +350,7 @@
|
||||||
"limited_HTTPS_access": "restricted_web_service",
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
"limited_SSH_access": "Limited SSH access",
|
"limited_SSH_access": "Limited SSH access",
|
||||||
"mongo": "mongo",
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
"postgreSQL": "PostgreSQL service",
|
"postgreSQL": "PostgreSQL service",
|
||||||
"public_HTTPS": "Public HTTPS"
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
@ -405,6 +411,14 @@
|
||||||
"string"
|
"string"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"storage_nfs_network_id": {
|
||||||
|
"value": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"storage_nfs_subnet_id": {
|
||||||
|
"value": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"ubuntu1804_data_file": {
|
"ubuntu1804_data_file": {
|
||||||
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -600,6 +614,61 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_rule_v2",
|
||||||
|
"name": "egress_ipv4_allowed",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Allow the egress traffic from the NFS port",
|
||||||
|
"direction": "egress",
|
||||||
|
"ethertype": "IPv4",
|
||||||
|
"id": "4cbefb20-8003-4e15-89f6-92a36a0f4004",
|
||||||
|
"port_range_max": 0,
|
||||||
|
"port_range_min": 0,
|
||||||
|
"protocol": "",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"remote_group_id": "",
|
||||||
|
"remote_ip_prefix": "0.0.0.0/0",
|
||||||
|
"security_group_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==",
|
||||||
|
"dependencies": [
|
||||||
|
"openstack_networking_secgroup_v2.nfs_share_no_ingress"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_networking_secgroup_v2",
|
||||||
|
"name": "nfs_share_no_ingress",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"all_tags": [],
|
||||||
|
"delete_default_rules": true,
|
||||||
|
"description": "Security rule that must be assigned to the NFS ports",
|
||||||
|
"id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"name": "nfs_share_no_ingress",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"tags": [],
|
||||||
|
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"timeouts": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "openstack_networking_subnet_v2",
|
"type": "openstack_networking_subnet_v2",
|
||||||
|
|
|
@ -0,0 +1,63 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
sdi1 = {
|
||||||
|
name = "sdi1",
|
||||||
|
description = "This instance is a SDI service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 10
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
sdi1 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["sdi1", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "SDI 1 Preproduction"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,520 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 4,
|
||||||
|
"lineage": "8cee4c79-e1f5-da79-df09-30fd79d1ce31",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "sdi1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "SDI 1 Preproduction",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/0be72795-388d-43c2-a2a2-223d36287a2e",
|
||||||
|
"name": "sdi1.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "sdi1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.205",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-26 11:50:56 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "b37e98e5-1bd4-4fe1-a16b-dff0c1e0b5a4",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "sdi1",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.205",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:1a:ad:8b",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.3.218",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:58:69:b4",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-26 11:51:38 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_servergroup_v2" "socialservice_server_group" {
|
||||||
|
name = "social-service"
|
||||||
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
accounting_service_1 = {
|
||||||
|
name = "socialservice-01",
|
||||||
|
description = "Social service API service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.cassandra],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
||||||
|
server_groups_ids = [openstack_compute_servergroup_v2.socialservice_server_group.id],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,527 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 9,
|
||||||
|
"lineage": "b0c486ab-63ca-4a0f-b061-5b94c0c93764",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "socialservice_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "03e0d8ce-6ab3-4d61-b7bd-7f79647c0387",
|
||||||
|
"members": [],
|
||||||
|
"name": "social-service",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "accounting_service_1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.35.88",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-23 13:02:34 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "4b6f9f06-5dda-43b5-aa59-40fab6273a6c",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "ahmed_macbook",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "socialservice-01",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.35.88",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:ca:66:61",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.13.250",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:74:60:69",
|
||||||
|
"name": "cassandra-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "0e2ecf79-bda0-468f-a365-1be4c9b39b85"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": null,
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "03e0d8ce-6ab3-4d61-b7bd-7f79647c0387",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-23 13:03:35 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.socialservice_server_group"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,79 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_with_data_volume" {
|
||||||
|
source = "../../modules/instance_with_data_volume"
|
||||||
|
|
||||||
|
instances_with_data_volume_map = {
|
||||||
|
storagehub = {
|
||||||
|
name = "storagehub",
|
||||||
|
description = "StorageHub pre instance",
|
||||||
|
flavor = module.common_variables.flavor_list.m2_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804,
|
||||||
|
image_volume_size = 30
|
||||||
|
volume = {
|
||||||
|
name = "storagehub_data_volume",
|
||||||
|
size = "120",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
storagehub = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["storagehub", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "StorageHub"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
workspace_repository = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["workspace-repository", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Workspace repository (storagehub)"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,627 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 7,
|
||||||
|
"lineage": "5cc26d03-8355-40e7-7983-6ef1742f597e",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "storagehub",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "StorageHub",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/7aee776d-bf3a-4214-9ff6-66c42bb85c2c",
|
||||||
|
"name": "storagehub.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "workspace_repository",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Workspace repository (storagehub)",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/31e09122-a806-4433-b248-6ec3965674c7",
|
||||||
|
"name": "workspace-repository.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_blockstorage_volume_v3",
|
||||||
|
"name": "instance_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "storagehub",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "2357fb1b-9072-4781-8cd5-6259f267e615",
|
||||||
|
"instance_id": "18c96196-a3bf-473c-a591-8fc2f9a9b973"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
|
"id": "2357fb1b-9072-4781-8cd5-6259f267e615",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "storagehub_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 120,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "instance_with_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "storagehub",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.166",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 30,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-02 16:46:57 +0000 UTC",
|
||||||
|
"flavor_id": "15",
|
||||||
|
"flavor_name": "m2.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "18c96196-a3bf-473c-a591-8fc2f9a9b973",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "storagehub",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.166",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:54:70:8f",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.3.42",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:52:40:4f",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "e25395f4-f1aa-4819-b5a5-36d25ee5af54"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-02 16:47:38 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_volume_attach_v2",
|
||||||
|
"name": "attach_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "storagehub",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "18c96196-a3bf-473c-a591-8fc2f9a9b973/2357fb1b-9072-4781-8cd5-6259f267e615",
|
||||||
|
"instance_id": "18c96196-a3bf-473c-a591-8fc2f9a9b973",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "2357fb1b-9072-4781-8cd5-6259f267e615"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,71 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_with_data_volume" {
|
||||||
|
source = "../../modules/instance_with_data_volume"
|
||||||
|
|
||||||
|
instances_with_data_volume_map = {
|
||||||
|
thredds1 = {
|
||||||
|
name = "thredds1",
|
||||||
|
description = "Thredds pre instance",
|
||||||
|
flavor = module.common_variables.flavor_list.m2_small,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804,
|
||||||
|
image_volume_size = 20
|
||||||
|
volume = {
|
||||||
|
name = "thredds1_data_volume",
|
||||||
|
size = "280",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
thredds1 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["thredds1", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Thredds thredds1"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,578 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 5,
|
||||||
|
"lineage": "84faa25d-b7aa-97ad-1354-2a15f0fbbfec",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Thredds thredds1",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/89fb79f8-fe91-43e1-a6ec-90e62f3d68db",
|
||||||
|
"name": "thredds1.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_blockstorage_volume_v3",
|
||||||
|
"name": "instance_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
|
"id": "239d33ed-e704-4ce2-bd2a-0f040af193bc",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "thredds1_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 280,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "instance_with_data_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.35.180",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-30 16:27:51 +0000 UTC",
|
||||||
|
"flavor_id": "10",
|
||||||
|
"flavor_name": "m2.small",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "cbd581ec-da4c-4da1-b753-8899ed810c5a",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "thredds1",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.35.180",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:98:ba:a3",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-30 16:28:31 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_with_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_volume_attach_v2",
|
||||||
|
"name": "attach_volume",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "thredds1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "cbd581ec-da4c-4da1-b753-8899ed810c5a/239d33ed-e704-4ce2-bd2a-0f040af193bc",
|
||||||
|
"instance_id": "cbd581ec-da4c-4da1-b753-8899ed810c5a",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "239d33ed-e704-4ce2-bd2a-0f040af193bc"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module "timescaledb" {
|
||||||
|
source = "../../modules/timescaledb"
|
||||||
|
|
||||||
|
timescaledb_server_data = {
|
||||||
|
node_name = "timescaledb"
|
||||||
|
node_data_disk_size = 30
|
||||||
|
node_data_disk_device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
|
||||||
|
timescaledb_nodes_count = 1
|
||||||
|
timescaledb_node_flavor = "m1.medium"
|
||||||
|
timescaledb_ip = ["192.168.11.5"]
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
output "timescaledb_net" {
|
||||||
|
value = module.timescaledb.timescaledb_net
|
||||||
|
}
|
||||||
|
|
||||||
|
output "timescaledb_subnet" {
|
||||||
|
value = module.timescaledb.timescaledb_subnet
|
||||||
|
}
|
||||||
|
|
||||||
|
output "timescaledb_servers" {
|
||||||
|
value = module.timescaledb.timescaledb_servers
|
||||||
|
sensitive = true
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,63 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
data = {
|
||||||
|
name = "data",
|
||||||
|
description = "This instance is a Uri Resolver service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
data = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["data", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Uri Resolver Preproduction"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-pre"
|
||||||
|
}
|
|
@ -0,0 +1,518 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 3,
|
||||||
|
"lineage": "3289d790-5754-16e4-125c-ec4ff3e9080b",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.32.4",
|
||||||
|
"ca_cidr": "10.1.32.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.32.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.32.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.32.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.32.12/32",
|
||||||
|
"octavia_main": "10.1.32.20",
|
||||||
|
"octavia_main_cidr": "10.1.32.20/32",
|
||||||
|
"prometheus": "10.1.32.10",
|
||||||
|
"prometheus_cidr": "10.1.32.10/32",
|
||||||
|
"ssh_jump": "10.1.32.5",
|
||||||
|
"ssh_jump_cidr": "10.1.32.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-pre-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud-pre.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.30.241",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Preprod main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-pre-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.32.11",
|
||||||
|
"10.1.32.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Preprod private network (use this as the main network)",
|
||||||
|
"name": "d4s-pre-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "23fd8a99-d551-4ada-8d3a-9859542ebb8c",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.35.254",
|
||||||
|
"allocation_start": "10.1.32.100",
|
||||||
|
"cidr": "10.1.32.0/22",
|
||||||
|
"description": "D4Science Preprod main private subnet",
|
||||||
|
"gateway_ip": "10.1.32.1",
|
||||||
|
"name": "d4s-pre-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "cd77a2fd-4a36-4254-b1d0-70b3874c6d04",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science PRE production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-pre-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"octavia_vrrp_ip_1": "10.1.33.159/32",
|
||||||
|
"octavia_vrrp_ip_2": "10.1.32.199/32",
|
||||||
|
"swarm_lb_name": "d4s-pre-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "6fdc02e2827b405dad99f34698659742"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "data",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Uri Resolver Preproduction",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c/b04f7674-b9e5-469d-979f-3a30d6e57859",
|
||||||
|
"name": "data.cloud-pre.d4science.org.",
|
||||||
|
"project_id": "6fdc02e2827b405dad99f34698659742",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud-pre.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "c1a4b4bc-f167-4387-855d-38f0f99ca05c"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "data",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.33.178",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-27 10:32:18 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "ceaba95d-ff31-4413-89cd-c4ec3892cfac",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "data",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.33.178",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:fe:33:db",
|
||||||
|
"name": "d4s-pre-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "23fd8a99-d551-4ada-8d3a-9859542ebb8c"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-27 10:32:59 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
# Instance
|
||||||
|
resource "openstack_compute_instance_v2" "aggregator_ariadne" {
|
||||||
|
name = "aggregator-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_medium
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 30
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,94 @@
|
||||||
|
resource "openstack_blockstorage_volume_v3" "graphdb_ariadne_data_volume" {
|
||||||
|
name = "graphdb_ariadne_data_volume"
|
||||||
|
size = "200"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_blockstorage_volume_v3" "graphdb_test_ariadne_data_volume" {
|
||||||
|
name = "graphdb_test_ariadne_data_volume"
|
||||||
|
size = "100"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Instances
|
||||||
|
resource "openstack_compute_instance_v2" "graphdb_ariadne" {
|
||||||
|
name = "graphdb-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.d1_large
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 20
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_instance_v2" "graphdb_test_ariadne" {
|
||||||
|
name = "graphdb-test-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.d1_large
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 20
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_volume_attach_v2" "graphdb_ariadne_attach" {
|
||||||
|
instance_id = openstack_compute_instance_v2.graphdb_ariadne.id
|
||||||
|
volume_id = openstack_blockstorage_volume_v3.graphdb_ariadne_data_volume.id
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_compute_volume_attach_v2" "graphdb_test_ariadne_attach" {
|
||||||
|
instance_id = openstack_compute_instance_v2.graphdb_test_ariadne.id
|
||||||
|
volume_id = openstack_blockstorage_volume_v3.graphdb_test_ariadne_data_volume.id
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
|
@ -0,0 +1,92 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Module used
|
||||||
|
module "ssh_settings" {
|
||||||
|
source = "../../modules/ssh-key-ref"
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
graphdb-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["graphdb-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Graphdb graphdb-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
graphdb-test-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["graphdb-test-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Graphdb graphdb-test-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
aggregator-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["aggregator-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Aggregator aggregator-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
opensearch-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["opensearch-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "OpenSearch opensearch-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
opensearch-test-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["opensearch-test-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "OpenSearch opensearch-test-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
solr-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["solr-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Solr solr-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,73 @@
|
||||||
|
# Instance
|
||||||
|
resource "openstack_compute_instance_v2" "opensearch_ariadne" {
|
||||||
|
name = "opensearch-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m2_medium
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 40
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_compute_instance_v2" "opensearch_test_ariadne" {
|
||||||
|
name = "opensearch-test-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m2_small
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 30
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
# Instance
|
||||||
|
resource "openstack_compute_instance_v2" "solr_ariadne" {
|
||||||
|
name = "solr-ariadne"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_large
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 100
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,91 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
auth1 = {
|
||||||
|
name = "auth1",
|
||||||
|
description = "This instance is a Authorization service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 20
|
||||||
|
},
|
||||||
|
auth2 = {
|
||||||
|
name = "auth2",
|
||||||
|
description = "This instance is a Authorization service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
image_volume_size = 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
auth1 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["auth1", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Authorization auth1"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
auth2 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["auth2", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Authorization auth2"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
authorization = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["authorization", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Authorization load balancer"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
|
@ -0,0 +1,658 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.4",
|
||||||
|
"serial": 6,
|
||||||
|
"lineage": "5b4f08c6-4f52-3af3-97ac-2594b36adabd",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.40.4",
|
||||||
|
"ca_cidr": "10.1.40.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.40.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.40.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.40.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.40.12/32",
|
||||||
|
"octavia_main": "10.1.40.20",
|
||||||
|
"octavia_main_cidr": "10.1.40.20/32",
|
||||||
|
"prometheus": "10.1.40.10",
|
||||||
|
"prometheus_cidr": "10.1.40.10/32",
|
||||||
|
"ssh_jump": "10.1.40.5",
|
||||||
|
"ssh_jump_cidr": "10.1.40.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-production-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.57",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Production main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-production-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.40.11",
|
||||||
|
"10.1.40.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Production private network (use this as the main network)",
|
||||||
|
"name": "d4s-production-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "020df98d-ae72-452a-b376-3b6dc289acac",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.47.254",
|
||||||
|
"allocation_start": "10.1.41.100",
|
||||||
|
"cidr": "10.1.40.0/21",
|
||||||
|
"description": "D4Science Production main private subnet",
|
||||||
|
"gateway_ip": "10.1.40.1",
|
||||||
|
"name": "d4s-production-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "167e4897-f776-4cbd-986f-77313aa68af2",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-production-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"swarm_lb_name": "d4s-production-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "1b45adf388934758b56d0dfdb4bfacf3"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Authorization auth1",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/32b6f704-bf84-4592-921f-ec782fab6ddf",
|
||||||
|
"name": "auth1.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "auth2",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Authorization auth2",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/16db4aa6-a874-4ca4-9605-161bdb3ed8c0",
|
||||||
|
"name": "auth2.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "authorization",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Authorization load balancer",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/3ba8a1a3-b6ad-4809-ba85-f135e2f3b3e3",
|
||||||
|
"name": "authorization.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "auth1",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.45.71",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-19 13:36:33 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "24564923-ac6c-413b-8daf-1ce623972987",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "auth1",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.45.71",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:ba:bd:e3",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.1.214",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:1a:8c:4f",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-19 13:37:17 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "auth2",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.43.246",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 20,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-19 13:36:33 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "24764e3b-e553-4742-a979-0c7e6d721894",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "auth2",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.43.246",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:c3:35:26",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.3.81",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:06:da:ca",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-19 13:37:25 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
../variables/outputs-production.tf
|
|
@ -0,0 +1 @@
|
||||||
|
../../modules/common_variables/outputs.tf
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,67 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Creates the server group "accounting-service"
|
||||||
|
#
|
||||||
|
resource "openstack_compute_servergroup_v2" "accounting_service_server_group" {
|
||||||
|
name = "accounting-service"
|
||||||
|
policies = [module.common_variables.policy_list.anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/cassandra"
|
||||||
|
cassandra_nodes_count = 3
|
||||||
|
cassandra_node_flavor = module.common_variables.flavor_list.m1_medium
|
||||||
|
cassandra_server_data = {
|
||||||
|
node_name = "cassandra"
|
||||||
|
node_data_disk_size = 20
|
||||||
|
node_data_disk_device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
|
||||||
|
cassandra_tcp_ports_map = {
|
||||||
|
tcp_plain = {
|
||||||
|
description = "Cassandra TCP port 7000",
|
||||||
|
port_min = 7000,
|
||||||
|
port_max = 7000
|
||||||
|
},
|
||||||
|
tcp_tls = {
|
||||||
|
description = "Cassandra TLS TCP port 7001",
|
||||||
|
port_min = 7001,
|
||||||
|
port_max = 7001
|
||||||
|
},
|
||||||
|
tcp_transport = {
|
||||||
|
description = "Cassandra TCP transport 9042",
|
||||||
|
port_min = 9042,
|
||||||
|
port_max = 9042
|
||||||
|
},
|
||||||
|
rpc = {
|
||||||
|
description = "Cassandra TCP transport 9042",
|
||||||
|
port_min = 9160,
|
||||||
|
port_max = 9160
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -23,37 +23,101 @@ module "common_variables" {
|
||||||
source = "../../modules/common_variables"
|
source = "../../modules/common_variables"
|
||||||
}
|
}
|
||||||
|
|
||||||
module "instance_with_data_volume" {
|
#Module used
|
||||||
source = "../../modules/instance_with_data_volume"
|
module "ssh_settings" {
|
||||||
|
source = "../../modules/ssh-key-ref"
|
||||||
instances_with_data_volume_map = {
|
|
||||||
dm_pool_manager_proto = {
|
|
||||||
name = "dm-pool-manager-proto",
|
|
||||||
description = "This instance is a DataMiner Pool Manager service",
|
|
||||||
flavor = module.common_variables.flavor_list.m1_large,
|
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
|
||||||
server_groups_ids = [],
|
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
|
||||||
volume = {
|
|
||||||
name = "dm_pool_manager_proto_data_volume",
|
|
||||||
size = "30",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_v2" "dataminer_publish" {
|
||||||
|
name = "dataminer_publish"
|
||||||
|
description = "Access to dataminer-ghost is allowed only to dm-pool-manager"
|
||||||
|
delete_default_rules = "true"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_compute_instance_v2" "dm_pool_manager_proto" {
|
||||||
|
name = "dm-pool-manager-proto"
|
||||||
|
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
|
||||||
|
flavor_name = module.common_variables.flavor_list.m1_large
|
||||||
|
key_pair = module.ssh_settings.ssh_key_name
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
|
||||||
|
block_device {
|
||||||
|
uuid = module.common_variables.ubuntu_1804.uuid
|
||||||
|
source_type = "image"
|
||||||
|
volume_size = 30
|
||||||
|
boot_index = 0
|
||||||
|
destination_type = "volume"
|
||||||
|
delete_on_termination = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Creates the networks according to input networks
|
||||||
|
dynamic "network" {
|
||||||
|
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name])
|
||||||
|
content {
|
||||||
|
name = network.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# user_data script used
|
||||||
|
user_data = file("${module.common_variables.ubuntu_1804.user_data_file}")
|
||||||
|
# Do not replace the instance when the ssh key changes
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
# Ignore changes to tags, e.g. because a management agent
|
||||||
|
# updates these based on some ruleset managed elsewhere.
|
||||||
|
key_pair, user_data, network
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_1" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 22
|
||||||
|
port_range_max = 22
|
||||||
|
remote_ip_prefix = join("/",[openstack_compute_instance_v2.dm_pool_manager_proto.network.0.fixed_ip_v4,"32"])
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_2" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 80
|
||||||
|
port_range_max = 80
|
||||||
|
remote_ip_prefix = "0.0.0.0/0"
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "openstack_networking_secgroup_rule_v2" "secgroup_dataminer_publish_rule_3" {
|
||||||
|
direction = "ingress"
|
||||||
|
ethertype = "IPv4"
|
||||||
|
protocol = "tcp"
|
||||||
|
port_range_min = 443
|
||||||
|
port_range_max = 443
|
||||||
|
remote_ip_prefix = join("/",[openstack_compute_instance_v2.dm_pool_manager_proto.network.0.fixed_ip_v4,"32"])
|
||||||
|
security_group_id = openstack_networking_secgroup_v2.dataminer_publish.id
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
dataminer_proto_ghost = {
|
dataminer_proto_ghost = {
|
||||||
name = "dataminer-proto-ghost",
|
name = "dataminer-proto-ghost",
|
||||||
description = "This instance is a DataMiner Ghost service",
|
description = "This instance is a DataMiner Ghost service",
|
||||||
flavor = module.common_variables.flavor_list.m1_large,
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [openstack_networking_secgroup_v2.dataminer_publish.name,data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 50
|
||||||
name = "dataminer_proto_ghost_data_volume",
|
|
||||||
size = "50",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_1_proto_1804 = {
|
dataminer_1_proto_1804 = {
|
||||||
name = "dataminer1-proto-1804",
|
name = "dataminer1-proto-1804",
|
||||||
|
@ -63,11 +127,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_1_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_2_proto_1804 = {
|
dataminer_2_proto_1804 = {
|
||||||
name = "dataminer2-proto-1804",
|
name = "dataminer2-proto-1804",
|
||||||
|
@ -77,11 +137,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_2_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_3_proto_1804 = {
|
dataminer_3_proto_1804 = {
|
||||||
name = "dataminer3-proto-1804",
|
name = "dataminer3-proto-1804",
|
||||||
|
@ -91,11 +147,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_3_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_4_proto_1804 = {
|
dataminer_4_proto_1804 = {
|
||||||
name = "dataminer4-proto-1804",
|
name = "dataminer4-proto-1804",
|
||||||
|
@ -105,11 +157,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_4_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_5_proto_1804 = {
|
dataminer_5_proto_1804 = {
|
||||||
name = "dataminer5-proto-1804",
|
name = "dataminer5-proto-1804",
|
||||||
|
@ -119,11 +167,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_5_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_6_proto_1804 = {
|
dataminer_6_proto_1804 = {
|
||||||
name = "dataminer6-proto-1804",
|
name = "dataminer6-proto-1804",
|
||||||
|
@ -133,11 +177,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_6_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_7_proto_1804 = {
|
dataminer_7_proto_1804 = {
|
||||||
name = "dataminer7-proto-1804",
|
name = "dataminer7-proto-1804",
|
||||||
|
@ -147,11 +187,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_7_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_8_proto_1804 = {
|
dataminer_8_proto_1804 = {
|
||||||
name = "dataminer8-proto-1804",
|
name = "dataminer8-proto-1804",
|
||||||
|
@ -161,11 +197,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 80
|
||||||
name = "dataminer_8_proto_1804_data_volume",
|
|
||||||
size = "80",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_2_gw_proto_1804 = {
|
dataminer_2_gw_proto_1804 = {
|
||||||
name = "dataminer2-gw-proto-1804",
|
name = "dataminer2-gw-proto-1804",
|
||||||
|
@ -175,11 +207,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 40
|
||||||
name = "dataminer_2_gw_proto_1804_data_volume",
|
|
||||||
size = "40",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_3_gw_proto_1804 = {
|
dataminer_3_gw_proto_1804 = {
|
||||||
name = "dataminer3-gw-proto-1804",
|
name = "dataminer3-gw-proto-1804",
|
||||||
|
@ -189,11 +217,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 40
|
||||||
name = "dataminer_3_gw_proto_1804_data_volume",
|
|
||||||
size = "40",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_4_gw_proto_1804 = {
|
dataminer_4_gw_proto_1804 = {
|
||||||
name = "dataminer4-gw-proto-1804",
|
name = "dataminer4-gw-proto-1804",
|
||||||
|
@ -203,11 +227,7 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 40
|
||||||
name = "dataminer_4_gw_proto_1804_data_volume",
|
|
||||||
size = "40",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dataminer_5_gw_proto_1804 = {
|
dataminer_5_gw_proto_1804 = {
|
||||||
name = "dataminer5-gw-proto-1804",
|
name = "dataminer5-gw-proto-1804",
|
||||||
|
@ -217,11 +237,149 @@ module "instance_with_data_volume" {
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
server_groups_ids = [],
|
server_groups_ids = [],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
volume = {
|
image_volume_size = 40
|
||||||
name = "dataminer_5_gw_proto_1804_data_volume",
|
|
||||||
size = "40",
|
|
||||||
device = "/dev/vdb"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
dm-pool-manager-proto = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dm-pool-manager-proto", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DM Pool Manager Proto"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer-proto-ghost = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer-proto-ghost", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner Proto Ghost"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer1-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer1-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 1 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer2-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer2-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 2 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer3-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer3-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 3 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer4-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer4-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 4 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer5-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer5-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 5 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer6-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer6-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 6 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer7-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer7-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 7 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer8-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer8-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 8 Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer2-gw-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer2-gw-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 2 Generic Worker Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer3-gw-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer3-gw-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 3 Generic Worker Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer4-gw-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer4-gw-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 4 Generic Worker Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer5-gw-proto-1804 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer5-gw-proto-1804", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner 5 Generic Worker Proto 1804"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer-prototypes = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer-prototypes", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner dataminer-prototypes load balancer"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
dataminer-prototypes-workers = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["dataminer-prototypes-workers", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "DataMiner dataminer-prototypes-workers load balancer"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,127 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "swarm-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# We only manage the DNS records, for the gCore services
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
resource-manager-openaire = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resource-manager-openaire", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resource-manager-openaire"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-gcubeapps = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-gcubeapps", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-gcubeapps"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-farm = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-farm", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-farm"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-d4research = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-d4research", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-d4research"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-d4os = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-d4os", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-d4os"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-parthenosvo = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-parthenosvo", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-parthenosvo"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-sobigdata = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-sobigdata", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-sobigdata"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
resourcemanager-root = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["resourcemanager-root", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore resourcemanager-root"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
vremodeler-gcubeapps = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["vremodeler-gcubeapps", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore vremodeler-gcubeapps"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
vremodeler-d4research = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["vremodeler-d4research", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore vremodeler-d4research"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
vremodeler-all = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["vremodeler-all", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "gCore vremodeler-all"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
|
@ -0,0 +1,683 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.6.6",
|
||||||
|
"serial": 16,
|
||||||
|
"lineage": "0f20c78f-bcfa-7a96-7a73-cabf9dc181bf",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.40.4",
|
||||||
|
"ca_cidr": "10.1.40.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.40.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.40.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.40.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.40.12/32",
|
||||||
|
"octavia_main": "10.1.40.20",
|
||||||
|
"octavia_main_cidr": "10.1.40.20/32",
|
||||||
|
"prometheus": "10.1.40.10",
|
||||||
|
"prometheus_cidr": "10.1.40.10/32",
|
||||||
|
"ssh_jump": "10.1.40.5",
|
||||||
|
"ssh_jump_cidr": "10.1.40.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-production-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.57",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Production main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-production-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.40.11",
|
||||||
|
"10.1.40.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Production private network (use this as the main network)",
|
||||||
|
"name": "d4s-production-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "020df98d-ae72-452a-b376-3b6dc289acac",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.47.254",
|
||||||
|
"allocation_start": "10.1.41.100",
|
||||||
|
"cidr": "10.1.40.0/21",
|
||||||
|
"description": "D4Science Production main private subnet",
|
||||||
|
"gateway_ip": "10.1.40.1",
|
||||||
|
"name": "d4s-production-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "167e4897-f776-4cbd-986f-77313aa68af2",
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-production-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"swarm_lb_name": "d4s-production-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "1b45adf388934758b56d0dfdb4bfacf3"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "resource-manager-openaire",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resource-manager-openaire",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/fdc63597-0e75-4bb6-89af-c07b98f2a441",
|
||||||
|
"name": "resource-manager-openaire.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-d4os",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-d4os",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/8e7c01a3-1f47-4c70-a2b7-182009f7a55a",
|
||||||
|
"name": "resourcemanager-d4os.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-d4research",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-d4research",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/46313056-8875-468b-b365-ff2635ba72dd",
|
||||||
|
"name": "resourcemanager-d4research.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-farm",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-farm",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/44b86d18-6816-4e27-aa94-acff8af27fac",
|
||||||
|
"name": "resourcemanager-farm.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-gcubeapps",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-gcubeapps",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/bd93815d-3585-4865-b40e-116e2cdbcc91",
|
||||||
|
"name": "resourcemanager-gcubeapps.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-parthenosvo",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-parthenosvo",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/6eb54662-5e5c-40a4-92f0-88d1a386f412",
|
||||||
|
"name": "resourcemanager-parthenosvo.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-root",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-root",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/f87bd713-bbe1-4054-8781-82183cf2ed83",
|
||||||
|
"name": "resourcemanager-root.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "resourcemanager-sobigdata",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore resourcemanager-sobigdata",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/9fe79d4b-7667-447b-ba35-d73431eaacdb",
|
||||||
|
"name": "resourcemanager-sobigdata.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "vremodeler-all",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore vremodeler-all",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/60924404-1cc7-4dd2-bf19-bac0093b1aa7",
|
||||||
|
"name": "vremodeler-all.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "vremodeler-d4research",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore vremodeler-d4research",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/b48b8771-f6b7-42bb-99bc-f45ce80e91f6",
|
||||||
|
"name": "vremodeler-d4research.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "vremodeler-gcubeapps",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "gCore vremodeler-gcubeapps",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/e28c2254-8f37-45f3-9b72-e250b7c00695",
|
||||||
|
"name": "vremodeler-gcubeapps.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"swarm-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -181,6 +181,130 @@ module "instance_with_data_volume" {
|
||||||
size = "40",
|
size = "40",
|
||||||
device = "/dev/vdb"
|
device = "/dev/vdb"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
geonetwork_itineris_carbon = {
|
||||||
|
name = "geonetwork-itineris-carbon",
|
||||||
|
description = "This instance serves geonetwork service",
|
||||||
|
flavor = module.common_variables.flavor_list.m2_small,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
server_groups_ids = [],
|
||||||
|
volume = {
|
||||||
|
name = "geonetwork_itineris_carbon_data_volume",
|
||||||
|
size = "20",
|
||||||
|
device = "/dev/vdb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
geonetwork-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-fisherieatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-fisherieatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-fisherieatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-grsf = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-grsf", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-grsf"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-iotcss3 = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-iotcss3", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-iotcss3"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-sdilab = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-sdilab", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-sdilab"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-spatialdata = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-spatialdata", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-spatialdata"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-wecafcfirms = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-wecafcfirms", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-wecafcfirms"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-bluecloud = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-bluecloud", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-bluecloud"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-tunaatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-tunaatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-tunaatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-globalfisheriesatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-globalfisheriesatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-globalfisheriesatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-prod = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-prod", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-prod"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geonetwork-itineris-carbon = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geonetwork-itineris-carbon", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geonetwork-itineris-carbon"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.5",
|
"terraform_version": "1.6.4",
|
||||||
"serial": 34,
|
"serial": 52,
|
||||||
"lineage": "08d2359a-f46e-f9fe-02d9-4cc9cfb46e25",
|
"lineage": "08d2359a-f46e-f9fe-02d9-4cc9cfb46e25",
|
||||||
"outputs": {},
|
"outputs": {},
|
||||||
"resources": [
|
"resources": [
|
||||||
|
@ -86,12 +86,15 @@
|
||||||
"c1_large": "c1.large",
|
"c1_large": "c1.large",
|
||||||
"c1_medium": "c1.medium",
|
"c1_medium": "c1.medium",
|
||||||
"c1_small": "c1.small",
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
"m1_large": "m1.large",
|
"m1_large": "m1.large",
|
||||||
"m1_medium": "m1.medium",
|
"m1_medium": "m1.medium",
|
||||||
"m1_xlarge": "m1.xlarge",
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
"m2_large": "m2.large",
|
"m2_large": "m2.large",
|
||||||
"m2_medium": "m2.medium",
|
"m2_medium": "m2.medium",
|
||||||
"m2_small": "m2.small"
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
},
|
},
|
||||||
"floating_ip_pools": {
|
"floating_ip_pools": {
|
||||||
"main_public_ip_pool": "external-network"
|
"main_public_ip_pool": "external-network"
|
||||||
|
@ -128,6 +131,7 @@
|
||||||
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
||||||
"mtu_size": 8942,
|
"mtu_size": 8942,
|
||||||
"networks_list": {
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
"orientdb": "orientdb-net",
|
"orientdb": "orientdb-net",
|
||||||
"orientdb_se": "orientdb-se-net",
|
"orientdb_se": "orientdb-se-net",
|
||||||
"shared_postgresql": "postgresql-srv-net",
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
@ -142,6 +146,7 @@
|
||||||
"isti_net": "146.48.80.0/21",
|
"isti_net": "146.48.80.0/21",
|
||||||
"s2i2s_net": "146.48.28.0/22"
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
},
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "167e4897-f776-4cbd-986f-77313aa68af2",
|
||||||
"octavia_information": {
|
"octavia_information": {
|
||||||
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
||||||
"main_lb_hostname": "main-lb",
|
"main_lb_hostname": "main-lb",
|
||||||
|
@ -162,7 +167,7 @@
|
||||||
"prometheus_server_data": {
|
"prometheus_server_data": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -184,11 +189,12 @@
|
||||||
"default": "default",
|
"default": "default",
|
||||||
"docker_swarm": "Docker Swarm",
|
"docker_swarm": "Docker Swarm",
|
||||||
"docker_swarm_NFS": "Docker Swarm NFS",
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
"haproxy": "HAPROXY L7",
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
"http_and_https_from_the_load_balancers": "http and https from the load balancers",
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
"limited_HTTPS_access": "Limited HTTPS access",
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
"limited_SSH_access": "Limited SSH access",
|
"limited_SSH_access": "Limited SSH access",
|
||||||
"mongo": "mongo",
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
"postgreSQL": "PostgreSQL service",
|
"postgreSQL": "PostgreSQL service",
|
||||||
"public_HTTPS": "Public HTTPS"
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
@ -220,6 +226,8 @@
|
||||||
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
"shell_d4s_cidr": "146.48.122.95/32"
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
},
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
"ubuntu_1804": {
|
"ubuntu_1804": {
|
||||||
|
@ -320,6 +328,7 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
"octavia_information": [
|
"octavia_information": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
|
@ -364,6 +373,8 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
"ubuntu1804_data_file": "string",
|
"ubuntu1804_data_file": "string",
|
||||||
"ubuntu2204_data_file": "string",
|
"ubuntu2204_data_file": "string",
|
||||||
"ubuntu_1804": [
|
"ubuntu_1804": [
|
||||||
|
@ -383,6 +394,315 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-ariadne",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-ariadne",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/ed21d6a2-6198-48ed-9135-b2a108672efd",
|
||||||
|
"name": "geonetwork-ariadne.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-bluecloud",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-bluecloud",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/e525a3ef-3c77-40b7-8f4c-b618956d744b",
|
||||||
|
"name": "geonetwork-bluecloud.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-fisherieatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-fisherieatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/11983aa1-c2b8-4b83-8f54-5fc0c92927cd",
|
||||||
|
"name": "geonetwork-fisherieatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-globalfisheriesatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-globalfisheriesatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/ff1f52b1-4fe3-4019-b945-5d0f28251505",
|
||||||
|
"name": "geonetwork-globalfisheriesatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-grsf",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-grsf",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/814a0562-2c36-4497-a7a2-5e6170d92c48",
|
||||||
|
"name": "geonetwork-grsf.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-iotcss3",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-iotcss3",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/4377f579-577c-4ade-9715-d8bea70bfafd",
|
||||||
|
"name": "geonetwork-iotcss3.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-itineris-carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-itineris-carbon",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/72cf92f0-dc8c-43b5-ba62-87add21b45cf",
|
||||||
|
"name": "geonetwork-itineris-carbon.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-prod",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-prod",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/a559c26b-f58c-476c-830e-20fa6f572718",
|
||||||
|
"name": "geonetwork-prod.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-sdilab",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-sdilab",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/3e4f082c-dd9e-44a3-8c0d-6fe06d8acac3",
|
||||||
|
"name": "geonetwork-sdilab.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-spatialdata",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-spatialdata",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/019af6cb-c1cd-4536-9700-c384b1541850",
|
||||||
|
"name": "geonetwork-spatialdata.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-tunaatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-tunaatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/291e3b9e-92dc-4a01-a8ac-440a55574b1d",
|
||||||
|
"name": "geonetwork-tunaatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork-wecafcfirms",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geonetwork-wecafcfirms",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/a7bed8c8-0c1e-4fd7-928b-f1dcc110cd6b",
|
||||||
|
"name": "geonetwork-wecafcfirms.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"module": "module.instance_with_data_volume",
|
"module": "module.instance_with_data_volume",
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
|
@ -394,7 +714,13 @@
|
||||||
"index_key": "geonetwork_ariadne",
|
"index_key": "geonetwork_ariadne",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "50fe7d24-fccc-47a0-bb1c-628389e5c404",
|
||||||
|
"instance_id": "a661b900-30ad-4d99-af42-7af72bfd6061"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -423,7 +749,13 @@
|
||||||
"index_key": "geonetwork_bluecloud",
|
"index_key": "geonetwork_bluecloud",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "454d32f0-616f-4253-9bb2-1ad3eb346668",
|
||||||
|
"instance_id": "79365c95-1b23-4228-acff-4b7b38b5ae46"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -452,7 +784,13 @@
|
||||||
"index_key": "geonetwork_fisherieatlas",
|
"index_key": "geonetwork_fisherieatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "d1f033af-6cd5-4d42-af93-059bcac4249a",
|
||||||
|
"instance_id": "533c7b86-8ad5-42ce-948b-d99fd46eca88"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -481,7 +819,13 @@
|
||||||
"index_key": "geonetwork_globalfisheriesatlas",
|
"index_key": "geonetwork_globalfisheriesatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "53495177-5019-46bd-a53c-61783d29bb26",
|
||||||
|
"instance_id": "a3d2c4ec-251f-41e8-8b82-61340a965352"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -510,7 +854,13 @@
|
||||||
"index_key": "geonetwork_grsf",
|
"index_key": "geonetwork_grsf",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "de917114-ac87-4180-89b5-43040852ffdf",
|
||||||
|
"instance_id": "2e611aea-dbf3-476d-a3dc-ebd1727cddb3"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -539,7 +889,13 @@
|
||||||
"index_key": "geonetwork_iotcss3",
|
"index_key": "geonetwork_iotcss3",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "cef9fb14-e691-48e5-9c3b-0f73cde4763c",
|
||||||
|
"instance_id": "410af5ec-844b-44d2-8f64-d71a340b98a7"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -565,7 +921,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geonetwork_prod",
|
"index_key": "geonetwork_itineris_carbon",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [],
|
||||||
|
@ -573,6 +929,41 @@
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
"enable_online_resize": null,
|
"enable_online_resize": null,
|
||||||
|
"id": "7776f0b1-6b5d-4226-b88d-3867738f2fc0",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "geonetwork_itineris_carbon_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 20,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork_prod",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "7e26f2fc-f8d0-4e18-a854-b73257801952",
|
||||||
|
"instance_id": "b429e60f-5938-4ef2-9b6b-5b1ec5c62b7b"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
"id": "7e26f2fc-f8d0-4e18-a854-b73257801952",
|
"id": "7e26f2fc-f8d0-4e18-a854-b73257801952",
|
||||||
"image_id": null,
|
"image_id": null,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
|
@ -597,7 +988,13 @@
|
||||||
"index_key": "geonetwork_sdilab",
|
"index_key": "geonetwork_sdilab",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "2074bd06-3217-4b9c-a51d-95f0b9755a15",
|
||||||
|
"instance_id": "31a61a71-b8d6-4351-9937-c724f0a6472b"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -626,7 +1023,13 @@
|
||||||
"index_key": "geonetwork_spatialdata",
|
"index_key": "geonetwork_spatialdata",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "1f4ce306-4a60-47a8-be6b-55ea2ee9b00e",
|
||||||
|
"instance_id": "bfa44306-24ab-4cc0-84ce-bac49d6ed2e8"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -655,7 +1058,13 @@
|
||||||
"index_key": "geonetwork_tunaatlas",
|
"index_key": "geonetwork_tunaatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "a38b773f-9aee-4790-95bd-453694193da6",
|
||||||
|
"instance_id": "37f725ea-06d4-47a0-b2de-2a62015a661d"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -684,7 +1093,13 @@
|
||||||
"index_key": "geonetwork_wecafcfirms",
|
"index_key": "geonetwork_wecafcfirms",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "14aa72c1-e290-44ca-b3e2-3c51babc67ff",
|
||||||
|
"instance_id": "cfd0b56d-dc57-41f8-95f8-6619a95161ac"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -788,7 +1203,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:02 +0000 UTC",
|
"updated": "2023-12-13 17:51:02 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -871,7 +1286,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:02 +0000 UTC",
|
"updated": "2023-12-13 17:51:02 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -954,7 +1369,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:52:25 +0000 UTC",
|
"updated": "2023-12-13 17:52:25 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1037,7 +1452,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:52:02 +0000 UTC",
|
"updated": "2023-12-13 17:52:02 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1120,7 +1535,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:03 +0000 UTC",
|
"updated": "2023-12-13 17:51:03 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1203,7 +1618,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:01 +0000 UTC",
|
"updated": "2023-12-13 17:51:01 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1216,6 +1631,89 @@
|
||||||
"data.terraform_remote_state.privnet_dns_router"
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork_itineris_carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.45.138",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-05 14:46:40 +0000 UTC",
|
||||||
|
"flavor_id": "10",
|
||||||
|
"flavor_name": "m2.small",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "4662eadd-f8d1-492c-94d6-dfe708b54bd7",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "geonetwork-itineris-carbon",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.45.138",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:66:0f:4f",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.1.51",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:eb:c6:c7",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-05 14:47:16 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geonetwork_prod",
|
"index_key": "geonetwork_prod",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
|
@ -1286,7 +1784,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:24 +0000 UTC",
|
"updated": "2023-12-13 17:51:24 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1369,7 +1867,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:06 +0000 UTC",
|
"updated": "2023-12-13 17:51:06 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1452,7 +1950,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:22 +0000 UTC",
|
"updated": "2023-12-13 17:51:22 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1535,7 +2033,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:51:29 +0000 UTC",
|
"updated": "2023-12-13 17:51:29 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1618,7 +2116,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-13 17:50:56 +0000 UTC",
|
"updated": "2023-12-13 17:50:56 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1766,6 +2264,27 @@
|
||||||
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geonetwork_itineris_carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "4662eadd-f8d1-492c-94d6-dfe708b54bd7/7776f0b1-6b5d-4226-b88d-3867738f2fc0",
|
||||||
|
"instance_id": "4662eadd-f8d1-492c-94d6-dfe708b54bd7",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "7776f0b1-6b5d-4226-b88d-3867738f2fc0"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geonetwork_prod",
|
"index_key": "geonetwork_prod",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Uses common_variables as module
|
||||||
|
#
|
||||||
|
module "common_variables" {
|
||||||
|
source = "../../modules/common_variables"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Creates the server group "geoportal"
|
||||||
|
#
|
||||||
|
resource "openstack_compute_servergroup_v2" "geoportal_server_group" {
|
||||||
|
name = "geoportal"
|
||||||
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
module "instance_without_data_volume" {
|
||||||
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
|
instances_without_data_volume_map = {
|
||||||
|
geoportal = {
|
||||||
|
name = "geoportal-cms",
|
||||||
|
description = "This instance serves the Geoportal service",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
||||||
|
server_groups_ids = [openstack_compute_servergroup_v2.geoportal_server_group.id],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
geoportal = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoportal", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoportal CNAME"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
|
@ -0,0 +1,557 @@
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.7.1",
|
||||||
|
"serial": 5,
|
||||||
|
"lineage": "aae5e61d-a5f4-4d02-f728-036c142ce6a7",
|
||||||
|
"outputs": {},
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "data",
|
||||||
|
"type": "terraform_remote_state",
|
||||||
|
"name": "privnet_dns_router",
|
||||||
|
"provider": "provider[\"terraform.io/builtin/terraform\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"backend": "local",
|
||||||
|
"config": {
|
||||||
|
"value": {
|
||||||
|
"path": "../project-setup/terraform.tfstate"
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"path": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"defaults": null,
|
||||||
|
"outputs": {
|
||||||
|
"value": {
|
||||||
|
"almalinux_9": {
|
||||||
|
"name": "AlmaLinux-9.0-20220718",
|
||||||
|
"uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688"
|
||||||
|
},
|
||||||
|
"availability_zone_no_gpu_name": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a",
|
||||||
|
"availability_zones_names": {
|
||||||
|
"availability_zone_no_gpu": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_with_gpu": "cnr-isti-nova-gpu-a"
|
||||||
|
},
|
||||||
|
"basic_services_ip": {
|
||||||
|
"ca": "10.1.40.4",
|
||||||
|
"ca_cidr": "10.1.40.4/32",
|
||||||
|
"haproxy_l7_1": "10.1.40.11",
|
||||||
|
"haproxy_l7_1_cidr": "10.1.40.11/32",
|
||||||
|
"haproxy_l7_2": "10.1.40.12",
|
||||||
|
"haproxy_l7_2_cidr": "10.1.40.12/32",
|
||||||
|
"octavia_main": "10.1.40.20",
|
||||||
|
"octavia_main_cidr": "10.1.40.20/32",
|
||||||
|
"prometheus": "10.1.40.10",
|
||||||
|
"prometheus_cidr": "10.1.40.10/32",
|
||||||
|
"ssh_jump": "10.1.40.5",
|
||||||
|
"ssh_jump_cidr": "10.1.40.5/32"
|
||||||
|
},
|
||||||
|
"centos_7": {
|
||||||
|
"name": "CentOS-7",
|
||||||
|
"uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca"
|
||||||
|
},
|
||||||
|
"default_security_group_name": "default_for_all",
|
||||||
|
"dns_zone": {
|
||||||
|
"description": "DNS primary zone for the d4s-production-cloud project",
|
||||||
|
"email": "postmaster@isti.cnr.it",
|
||||||
|
"ttl": "8600",
|
||||||
|
"zone_name": "cloud.d4science.org."
|
||||||
|
},
|
||||||
|
"dns_zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4",
|
||||||
|
"el7_data_file": "../../openstack_vm_data_scripts/el7.sh",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
{
|
||||||
|
"ip_address": "146.48.31.57",
|
||||||
|
"subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"external_network": {
|
||||||
|
"id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"name": "external-network"
|
||||||
|
},
|
||||||
|
"external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b",
|
||||||
|
"external_router": {
|
||||||
|
"description": "D4Science Production main router",
|
||||||
|
"id": "cc26064a-bb08-4c0b-929f-d0cb39f934a3",
|
||||||
|
"name": "d4s-production-cloud-external-router"
|
||||||
|
},
|
||||||
|
"flavor_list": {
|
||||||
|
"c1_large": "c1.large",
|
||||||
|
"c1_medium": "c1.medium",
|
||||||
|
"c1_small": "c1.small",
|
||||||
|
"m1_large": "m1.large",
|
||||||
|
"m1_medium": "m1.medium",
|
||||||
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m2_large": "m2.large",
|
||||||
|
"m2_medium": "m2.medium",
|
||||||
|
"m2_small": "m2.small"
|
||||||
|
},
|
||||||
|
"floating_ip_pools": {
|
||||||
|
"main_public_ip_pool": "external-network"
|
||||||
|
},
|
||||||
|
"haproxy_l7_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"haproxy_1": "haproxy-l7-1",
|
||||||
|
"haproxy_2": "haproxy-l7-2",
|
||||||
|
"name": "main-haproxy-l7",
|
||||||
|
"vm_count": "2"
|
||||||
|
},
|
||||||
|
"internal_ca_data": {
|
||||||
|
"flavor": "m1.small",
|
||||||
|
"name": "ca"
|
||||||
|
},
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"10.1.40.11",
|
||||||
|
"10.1.40.12"
|
||||||
|
],
|
||||||
|
"main_private_network": {
|
||||||
|
"description": "D4Science Production private network (use this as the main network)",
|
||||||
|
"name": "d4s-production-cloud-main"
|
||||||
|
},
|
||||||
|
"main_private_network_id": "020df98d-ae72-452a-b376-3b6dc289acac",
|
||||||
|
"main_private_subnet": {
|
||||||
|
"allocation_end": "10.1.47.254",
|
||||||
|
"allocation_start": "10.1.41.100",
|
||||||
|
"cidr": "10.1.40.0/21",
|
||||||
|
"description": "D4Science Production main private subnet",
|
||||||
|
"gateway_ip": "10.1.40.1",
|
||||||
|
"name": "d4s-production-cloud-main-subnet"
|
||||||
|
},
|
||||||
|
"main_region": "isti_area_pi_1",
|
||||||
|
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
||||||
|
"mtu_size": 8942,
|
||||||
|
"networks_list": {
|
||||||
|
"orientdb": "orientdb-net",
|
||||||
|
"orientdb_se": "orientdb-se-net",
|
||||||
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
"swarm": "swarm-nfs-net",
|
||||||
|
"timescaledb": "timescaledb-net"
|
||||||
|
},
|
||||||
|
"networks_with_d4s_services": {
|
||||||
|
"garr_ct1_net": "90.147.166.0/23",
|
||||||
|
"garr_na_net": "90.147.152.0/24",
|
||||||
|
"garr_pa1_net": "90.147.188.0/23",
|
||||||
|
"infrascience_net": "146.48.122.0/23",
|
||||||
|
"isti_net": "146.48.80.0/21",
|
||||||
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
|
},
|
||||||
|
"octavia_information": {
|
||||||
|
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
||||||
|
"main_lb_hostname": "main-lb",
|
||||||
|
"main_lb_name": "d4s-production-cloud-l4-load-balancer",
|
||||||
|
"octavia_flavor": "octavia_amphora-mvcpu-ha",
|
||||||
|
"octavia_flavor_id": "394988b5-6603-4a1e-a939-8e177c6681c7",
|
||||||
|
"swarm_lb_name": "d4s-production-cloud-l4-swarm-load-balancer"
|
||||||
|
},
|
||||||
|
"os_project_data": {
|
||||||
|
"id": "1b45adf388934758b56d0dfdb4bfacf3"
|
||||||
|
},
|
||||||
|
"policy_list": {
|
||||||
|
"affinity": "affinity",
|
||||||
|
"anti_affinity": "anti-affinity",
|
||||||
|
"soft_affinity": "soft-affinity",
|
||||||
|
"soft_anti_affinity": "soft-anti-affinity"
|
||||||
|
},
|
||||||
|
"prometheus_server_data": {
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "prometheus",
|
||||||
|
"public_grafana_server_cidr": "146.48.122.132/32",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "prometheus-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"resolvers_ip": [
|
||||||
|
"146.48.29.97",
|
||||||
|
"146.48.29.98",
|
||||||
|
"146.48.29.99"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": {},
|
||||||
|
"security_group_list": {
|
||||||
|
"acaland": "acaland's dev machine",
|
||||||
|
"access_to_orientdb": "access_to_orientdb",
|
||||||
|
"access_to_orientdb_se": "access_to_orientdb_se",
|
||||||
|
"access_to_the_timescaledb_service": "access_to_the_timescaledb_service",
|
||||||
|
"cassandra": "Cassandra",
|
||||||
|
"dataminer-publish": "dataminer-publish",
|
||||||
|
"debugging_from_jump_node": "debugging_from_jump_node",
|
||||||
|
"default": "default",
|
||||||
|
"docker_swarm": "Docker Swarm",
|
||||||
|
"docker_swarm_NFS": "Docker Swarm NFS",
|
||||||
|
"haproxy": "traffic_from_main_lb_to_haproxy_l7",
|
||||||
|
"http_and_https_from_the_load_balancers": "traffic_from_the_main_load_balancers",
|
||||||
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
|
"limited_SSH_access": "Limited SSH access",
|
||||||
|
"mongo": "mongo",
|
||||||
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
|
"postgreSQL": "PostgreSQL service",
|
||||||
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
},
|
||||||
|
"shared_postgresql_server_data": {
|
||||||
|
"allocation_pool_end": "192.168.3.254",
|
||||||
|
"allocation_pool_start": "192.168.0.100",
|
||||||
|
"flavor": "m1.medium",
|
||||||
|
"name": "shared-postgresql-server",
|
||||||
|
"network_cidr": "192.168.0.0/22",
|
||||||
|
"network_description": "Network used to communicate with the shared postgresql service",
|
||||||
|
"network_name": "postgresql-srv-net",
|
||||||
|
"server_cidr": "192.168.0.5/22",
|
||||||
|
"server_ip": "192.168.0.5",
|
||||||
|
"vol_data_device": "/dev/vdb",
|
||||||
|
"vol_data_name": "shared-postgresql-data",
|
||||||
|
"vol_data_size": "100"
|
||||||
|
},
|
||||||
|
"smartexecutor_addresses": {},
|
||||||
|
"ssh_jump_proxy": {
|
||||||
|
"flavor": "m2.small",
|
||||||
|
"name": "ssh-jump-proxy"
|
||||||
|
},
|
||||||
|
"ssh_sources": {
|
||||||
|
"d4s_vpn_1_cidr": "146.48.122.27/32",
|
||||||
|
"d4s_vpn_2_cidr": "146.48.122.49/32",
|
||||||
|
"infrascience_net_cidr": "146.48.122.0/23",
|
||||||
|
"s2i2s_vpn_1_cidr": "146.48.28.10/32",
|
||||||
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
|
},
|
||||||
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"ubuntu_1804": {
|
||||||
|
"name": "Ubuntu-Bionic-18.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89"
|
||||||
|
},
|
||||||
|
"ubuntu_2204": {
|
||||||
|
"name": "Ubuntu-Jammy-22.04",
|
||||||
|
"user_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
|
"uuid": "54768889-8556-4be4-a2eb-82a4d9b34627"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"almalinux_9": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"availability_zone_no_gpu_name": "string",
|
||||||
|
"availability_zone_with_gpu_name": "string",
|
||||||
|
"availability_zones_names": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"basic_services_ip": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"centos_7": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"default_security_group_name": "string",
|
||||||
|
"dns_zone": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"dns_zone_id": "string",
|
||||||
|
"el7_data_file": "string",
|
||||||
|
"external_gateway_ip": [
|
||||||
|
"list",
|
||||||
|
[
|
||||||
|
"object",
|
||||||
|
{
|
||||||
|
"ip_address": "string",
|
||||||
|
"subnet_id": "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"external_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"external_network_id": "string",
|
||||||
|
"external_router": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"flavor_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"floating_ip_pools": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"haproxy_l7_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"internal_ca_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_haproxy_l7_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_private_network_id": "string",
|
||||||
|
"main_private_subnet": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"main_region": "string",
|
||||||
|
"main_subnet_network_id": "string",
|
||||||
|
"mtu_size": "number",
|
||||||
|
"networks_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"networks_with_d4s_services": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"octavia_information": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"os_project_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"policy_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"prometheus_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resolvers_ip": [
|
||||||
|
"list",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"resource_registry_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"security_group_list": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"shared_postgresql_server_data": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"smartexecutor_addresses": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_jump_proxy": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ssh_sources": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu1804_data_file": "string",
|
||||||
|
"ubuntu2204_data_file": "string",
|
||||||
|
"ubuntu_1804": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
|
"ubuntu_2204": [
|
||||||
|
"map",
|
||||||
|
"string"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"workspace": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "geoportal_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "7258d5fd-3f4e-46f0-aeb6-95e7deef246b",
|
||||||
|
"members": [
|
||||||
|
"eba131d8-50ec-4e3e-9203-cdc025db210c"
|
||||||
|
],
|
||||||
|
"name": "geoportal",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoportal",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoportal CNAME",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/2cfa7648-7fdd-42ed-8abb-6f022751d318",
|
||||||
|
"name": "geoportal.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "module.instance_without_data_volume",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_instance_v2",
|
||||||
|
"name": "smartgears_service",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoportal",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.44.156",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-30 14:21:57 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "eba131d8-50ec-4e3e-9203-cdc025db210c",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "francescomangiacrapa",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "geoportal-cms",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.44.156",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:7e:8a:2b",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.0.120",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:f5:5b:54",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": {},
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "7258d5fd-3f4e-46f0-aeb6-95e7deef246b",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-30 14:22:36 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.geoportal_server_group"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"check_results": null
|
||||||
|
}
|
|
@ -182,6 +182,131 @@ module "instance_with_data_volume" {
|
||||||
size = "50",
|
size = "50",
|
||||||
device = "/dev/vdb",
|
device = "/dev/vdb",
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
geoserver_itineris_carbon = {
|
||||||
|
name = "geoserver-itineris-carbon",
|
||||||
|
description = "Geoserver itineris carbon instance",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_large,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers],
|
||||||
|
server_groups_ids = [],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804,
|
||||||
|
volume = {
|
||||||
|
name = "geoserver_itineris_carbon_data_volume",
|
||||||
|
size = "40",
|
||||||
|
device = "/dev/vdb",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
locals {
|
||||||
|
cname_target = "main-lb.${data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name}"
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add DNS record/s
|
||||||
|
#
|
||||||
|
module "dns_records_create" {
|
||||||
|
source = "../../modules/dns_resources"
|
||||||
|
|
||||||
|
dns_resources_map = {
|
||||||
|
geoserver-geona = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-geona", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-geona"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-esquiline = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-esquiline", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-esquiline"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-ariadne = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-ariadne", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-ariadne"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-grsf = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-grsf", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-grsf"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-protectedareaimpactmaps = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-protectedareaimpactmaps", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-protectedareaimpactmaps"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-sdilab = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-sdilab", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-sdilab"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-tunaatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-tunaatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-tunaatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-wecafcfirms = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-wecafcfirms", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-wecafcfirms"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-aquacultureatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-aquacultureatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-aquacultureatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-globalfisheriesatlas = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-globalfisheriesatlas", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geonetwork geoserver-globalfisheriesatlas"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-marineenvironmentalindicators = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-marineenvironmentalindicators", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-marineenvironmentalindicators"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
|
},
|
||||||
|
geoserver-itineris-carbon = {
|
||||||
|
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
|
||||||
|
name = join(".", ["geoserver-itineris-carbon", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
|
||||||
|
description = "Geoserver geoserver-itineris-carbon"
|
||||||
|
ttl = 8600
|
||||||
|
type = "CNAME"
|
||||||
|
records = [local.cname_target]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.5",
|
"terraform_version": "1.6.4",
|
||||||
"serial": 34,
|
"serial": 51,
|
||||||
"lineage": "de164650-89d7-4446-7bbf-4d84dd648c8e",
|
"lineage": "de164650-89d7-4446-7bbf-4d84dd648c8e",
|
||||||
"outputs": {},
|
"outputs": {},
|
||||||
"resources": [
|
"resources": [
|
||||||
|
@ -86,12 +86,15 @@
|
||||||
"c1_large": "c1.large",
|
"c1_large": "c1.large",
|
||||||
"c1_medium": "c1.medium",
|
"c1_medium": "c1.medium",
|
||||||
"c1_small": "c1.small",
|
"c1_small": "c1.small",
|
||||||
|
"c2_large": "c2.large",
|
||||||
"m1_large": "m1.large",
|
"m1_large": "m1.large",
|
||||||
"m1_medium": "m1.medium",
|
"m1_medium": "m1.medium",
|
||||||
"m1_xlarge": "m1.xlarge",
|
"m1_xlarge": "m1.xlarge",
|
||||||
|
"m1_xxl": "m1.xxl",
|
||||||
"m2_large": "m2.large",
|
"m2_large": "m2.large",
|
||||||
"m2_medium": "m2.medium",
|
"m2_medium": "m2.medium",
|
||||||
"m2_small": "m2.small"
|
"m2_small": "m2.small",
|
||||||
|
"m3_large": "m3.large"
|
||||||
},
|
},
|
||||||
"floating_ip_pools": {
|
"floating_ip_pools": {
|
||||||
"main_public_ip_pool": "external-network"
|
"main_public_ip_pool": "external-network"
|
||||||
|
@ -128,6 +131,7 @@
|
||||||
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
"main_subnet_network_id": "5d7b83ad-e058-4a3a-bfd8-d20ba6d42e1a",
|
||||||
"mtu_size": 8942,
|
"mtu_size": 8942,
|
||||||
"networks_list": {
|
"networks_list": {
|
||||||
|
"cassandra": "cassandra-net",
|
||||||
"orientdb": "orientdb-net",
|
"orientdb": "orientdb-net",
|
||||||
"orientdb_se": "orientdb-se-net",
|
"orientdb_se": "orientdb-se-net",
|
||||||
"shared_postgresql": "postgresql-srv-net",
|
"shared_postgresql": "postgresql-srv-net",
|
||||||
|
@ -142,6 +146,7 @@
|
||||||
"isti_net": "146.48.80.0/21",
|
"isti_net": "146.48.80.0/21",
|
||||||
"s2i2s_net": "146.48.28.0/22"
|
"s2i2s_net": "146.48.28.0/22"
|
||||||
},
|
},
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "167e4897-f776-4cbd-986f-77313aa68af2",
|
||||||
"octavia_information": {
|
"octavia_information": {
|
||||||
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
"main_lb_description": "Main L4 load balancer for the D4Science production",
|
||||||
"main_lb_hostname": "main-lb",
|
"main_lb_hostname": "main-lb",
|
||||||
|
@ -162,7 +167,7 @@
|
||||||
"prometheus_server_data": {
|
"prometheus_server_data": {
|
||||||
"flavor": "m1.medium",
|
"flavor": "m1.medium",
|
||||||
"name": "prometheus",
|
"name": "prometheus",
|
||||||
"public_grafana_server_cidr": "146.48.122.132/32",
|
"public_grafana_server_cidr": "146.48.28.103/32",
|
||||||
"vol_data_device": "/dev/vdb",
|
"vol_data_device": "/dev/vdb",
|
||||||
"vol_data_name": "prometheus-data",
|
"vol_data_name": "prometheus-data",
|
||||||
"vol_data_size": "100"
|
"vol_data_size": "100"
|
||||||
|
@ -189,6 +194,7 @@
|
||||||
"limited_HTTPS_access": "restricted_web_service",
|
"limited_HTTPS_access": "restricted_web_service",
|
||||||
"limited_SSH_access": "Limited SSH access",
|
"limited_SSH_access": "Limited SSH access",
|
||||||
"mongo": "mongo",
|
"mongo": "mongo",
|
||||||
|
"nfs_share_no_ingress": "nfs_share_no_ingress",
|
||||||
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
"orientdb_internal_docker_traffic": "orientdb_internal_docker_traffic",
|
||||||
"postgreSQL": "PostgreSQL service",
|
"postgreSQL": "PostgreSQL service",
|
||||||
"public_HTTPS": "Public HTTPS"
|
"public_HTTPS": "Public HTTPS"
|
||||||
|
@ -220,6 +226,8 @@
|
||||||
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
"s2i2s_vpn_2_cidr": "146.48.28.11/32",
|
||||||
"shell_d4s_cidr": "146.48.122.95/32"
|
"shell_d4s_cidr": "146.48.122.95/32"
|
||||||
},
|
},
|
||||||
|
"storage_nfs_network_id": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||||
|
"storage_nfs_subnet_id": "6ff0f9e8-0e74-4cc3-a268-7ed4af435696",
|
||||||
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
"ubuntu1804_data_file": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||||
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
"ubuntu2204_data_file": "../../openstack_vm_data_scripts/ubuntu2204.sh",
|
||||||
"ubuntu_1804": {
|
"ubuntu_1804": {
|
||||||
|
@ -320,6 +328,7 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"nfs_share_no_ingress_secgroup_id": "string",
|
||||||
"octavia_information": [
|
"octavia_information": [
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
|
@ -364,6 +373,8 @@
|
||||||
"map",
|
"map",
|
||||||
"string"
|
"string"
|
||||||
],
|
],
|
||||||
|
"storage_nfs_network_id": "string",
|
||||||
|
"storage_nfs_subnet_id": "string",
|
||||||
"ubuntu1804_data_file": "string",
|
"ubuntu1804_data_file": "string",
|
||||||
"ubuntu2204_data_file": "string",
|
"ubuntu2204_data_file": "string",
|
||||||
"ubuntu_1804": [
|
"ubuntu_1804": [
|
||||||
|
@ -383,6 +394,315 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"module": "module.dns_records_create",
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_dns_recordset_v2",
|
||||||
|
"name": "add_dns_recordset",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-aquacultureatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-aquacultureatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/5ff5afef-932c-4f5d-8595-afd9a872a08d",
|
||||||
|
"name": "geoserver-aquacultureatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-ariadne",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-ariadne",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/600ee8ca-9ace-4a1c-9c6e-92657ce2dddf",
|
||||||
|
"name": "geoserver-ariadne.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-esquiline",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-esquiline",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/2793fa01-2440-4796-a45e-4e57f1b68f5a",
|
||||||
|
"name": "geoserver-esquiline.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-geona",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-geona",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/42ee9a01-afab-4565-8f7d-51ae6614d783",
|
||||||
|
"name": "geoserver-geona.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-globalfisheriesatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geonetwork geoserver-globalfisheriesatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/b899990f-95db-4f76-8e01-b5a5f5af6da3",
|
||||||
|
"name": "geoserver-globalfisheriesatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-grsf",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-grsf",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/72a22f79-8d61-4104-997f-a574234461dd",
|
||||||
|
"name": "geoserver-grsf.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-itineris-carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-itineris-carbon",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/c41673c1-ab05-41ff-b1ca-f58a565e57e0",
|
||||||
|
"name": "geoserver-itineris-carbon.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-marineenvironmentalindicators",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-marineenvironmentalindicators",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/7a74183f-528d-499d-8e84-025eaed0ba2a",
|
||||||
|
"name": "geoserver-marineenvironmentalindicators.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-protectedareaimpactmaps",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-protectedareaimpactmaps",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/f2abd823-a3de-4ac4-919e-51b07c8db5f5",
|
||||||
|
"name": "geoserver-protectedareaimpactmaps.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-sdilab",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-sdilab",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/6c8ef2af-7d8b-4111-a2ee-04353ed5a9d4",
|
||||||
|
"name": "geoserver-sdilab.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-tunaatlas",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-tunaatlas",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/a524d8ac-ad9e-4c22-9c1b-aaa58bb5f410",
|
||||||
|
"name": "geoserver-tunaatlas.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver-wecafcfirms",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"description": "Geoserver geoserver-wecafcfirms",
|
||||||
|
"disable_status_check": false,
|
||||||
|
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/e12446b9-bdb0-4b53-953c-8cd86c535c6a",
|
||||||
|
"name": "geoserver-wecafcfirms.cloud.d4science.org.",
|
||||||
|
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||||
|
"records": [
|
||||||
|
"main-lb.cloud.d4science.org."
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"ttl": 8600,
|
||||||
|
"type": "CNAME",
|
||||||
|
"value_specs": null,
|
||||||
|
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"module": "module.instance_with_data_volume",
|
"module": "module.instance_with_data_volume",
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
|
@ -394,7 +714,13 @@
|
||||||
"index_key": "geoserver_aquacultureatlas",
|
"index_key": "geoserver_aquacultureatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "f53e3efd-a530-4a4a-aac7-39e862418af0",
|
||||||
|
"instance_id": "4010f6dc-f20b-407c-aa1e-fe87fd9b5230"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -423,7 +749,13 @@
|
||||||
"index_key": "geoserver_ariadne",
|
"index_key": "geoserver_ariadne",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "82fc05d3-1903-49b7-8479-5dbb5a035a9c",
|
||||||
|
"instance_id": "61991170-8fa9-4822-a9f3-cff53a91b394"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -452,7 +784,13 @@
|
||||||
"index_key": "geoserver_esquiline",
|
"index_key": "geoserver_esquiline",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "cee27693-7d90-4645-a7ef-691133934a90",
|
||||||
|
"instance_id": "0f82ac9b-3dd9-44a8-aa2a-d9fc809fb112"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -481,7 +819,13 @@
|
||||||
"index_key": "geoserver_geona",
|
"index_key": "geoserver_geona",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "4a29e73b-2650-4a2f-ae40-d518d8e707c7",
|
||||||
|
"instance_id": "6a75e7ec-7f33-4b87-8e01-aee11ce5f3ee"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -510,7 +854,13 @@
|
||||||
"index_key": "geoserver_globalfisheriesatlas",
|
"index_key": "geoserver_globalfisheriesatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "646e3ee5-4037-450a-9be9-189d811106ae",
|
||||||
|
"instance_id": "17ed0958-b281-438b-8dfd-5a8fdcedde7d"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -539,7 +889,13 @@
|
||||||
"index_key": "geoserver_grsf",
|
"index_key": "geoserver_grsf",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "19a6d750-69cb-4c10-99b3-115223ade1a0",
|
||||||
|
"instance_id": "d5e2e97c-a43e-4d26-9ea0-d2f2952f9c09"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -565,7 +921,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geoserver_marineenvironmentalindicators",
|
"index_key": "geoserver_itineris_carbon",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [],
|
||||||
|
@ -573,6 +929,41 @@
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
"enable_online_resize": null,
|
"enable_online_resize": null,
|
||||||
|
"id": "ff4bfb64-6e5f-4adf-8b31-326eaef97667",
|
||||||
|
"image_id": null,
|
||||||
|
"metadata": {},
|
||||||
|
"multiattach": null,
|
||||||
|
"name": "geoserver_itineris_carbon_data_volume",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"size": 40,
|
||||||
|
"snapshot_id": "",
|
||||||
|
"source_replica": null,
|
||||||
|
"source_vol_id": "",
|
||||||
|
"timeouts": null,
|
||||||
|
"volume_type": "cephUnencrypted"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver_marineenvironmentalindicators",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "2f2e03c1-617a-4636-bd6a-6365c1cad152",
|
||||||
|
"instance_id": "5615ecc2-9dae-4759-9181-58c068128a62"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"availability_zone": "nova",
|
||||||
|
"consistency_group_id": null,
|
||||||
|
"description": "",
|
||||||
|
"enable_online_resize": null,
|
||||||
"id": "2f2e03c1-617a-4636-bd6a-6365c1cad152",
|
"id": "2f2e03c1-617a-4636-bd6a-6365c1cad152",
|
||||||
"image_id": null,
|
"image_id": null,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
|
@ -597,7 +988,13 @@
|
||||||
"index_key": "geoserver_protectedareaimpactmaps",
|
"index_key": "geoserver_protectedareaimpactmaps",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "19150f10-0454-446d-b185-e7af3e904b53",
|
||||||
|
"instance_id": "f39793c5-3e3a-40fb-909e-840a43a001f4"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -626,7 +1023,13 @@
|
||||||
"index_key": "geoserver_sdilab",
|
"index_key": "geoserver_sdilab",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "a9a8535b-6d3f-4c22-89aa-a0a10b385150",
|
||||||
|
"instance_id": "9ad1420c-f428-4bfc-8db0-36f1c78d8ebb"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -655,7 +1058,13 @@
|
||||||
"index_key": "geoserver_tunaatlas",
|
"index_key": "geoserver_tunaatlas",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "b7e0989f-2f72-4c5c-9f90-36998a54f4cf",
|
||||||
|
"instance_id": "788e6da0-be2f-4dfa-b68b-da973f4d2f3e"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -684,7 +1093,13 @@
|
||||||
"index_key": "geoserver_wecafcfirms",
|
"index_key": "geoserver_wecafcfirms",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"attachment": [],
|
"attachment": [
|
||||||
|
{
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "3723e4fb-8e35-458e-930a-318f5ff4bafb",
|
||||||
|
"instance_id": "237a6d69-2f5b-4c49-8741-2e52fc3a22ec"
|
||||||
|
}
|
||||||
|
],
|
||||||
"availability_zone": "nova",
|
"availability_zone": "nova",
|
||||||
"consistency_group_id": null,
|
"consistency_group_id": null,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -788,7 +1203,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -871,7 +1286,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:24 +0000 UTC",
|
"updated": "2023-12-14 17:16:24 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -954,7 +1369,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:31 +0000 UTC",
|
"updated": "2023-12-14 17:16:31 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1037,7 +1452,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1120,7 +1535,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:31 +0000 UTC",
|
"updated": "2023-12-14 17:16:31 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1203,7 +1618,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
"updated": "2023-12-14 17:16:20 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1216,6 +1631,89 @@
|
||||||
"data.terraform_remote_state.privnet_dns_router"
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver_itineris_carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.44.84",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-02-05 14:18:48 +0000 UTC",
|
||||||
|
"flavor_id": "9",
|
||||||
|
"flavor_name": "m1.large",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "eb61b11a-4176-41d1-8bcc-f6c0024730cd",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "Giancarlo Panichi",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "geoserver-itineris-carbon",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.44.84",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:c3:4b:32",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "192.168.2.82",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:6f:12:d1",
|
||||||
|
"name": "postgresql-srv-net",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [],
|
||||||
|
"security_groups": [
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": null,
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-02-05 14:19:30 +0000 UTC",
|
||||||
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geoserver_marineenvironmentalindicators",
|
"index_key": "geoserver_marineenvironmentalindicators",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
|
@ -1286,7 +1784,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:42 +0000 UTC",
|
"updated": "2023-12-14 17:16:42 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1369,7 +1867,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:42 +0000 UTC",
|
"updated": "2023-12-14 17:16:42 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1452,7 +1950,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:17:02 +0000 UTC",
|
"updated": "2023-12-14 17:17:02 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1535,7 +2033,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:28 +0000 UTC",
|
"updated": "2023-12-14 17:16:28 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1618,7 +2116,7 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-14 17:16:21 +0000 UTC",
|
"updated": "2023-12-14 17:16:21 +0000 UTC",
|
||||||
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
"user_data": "47d4769e61324c305c4b70ed6673de4fad84150d",
|
||||||
|
@ -1766,6 +2264,27 @@
|
||||||
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"index_key": "geoserver_itineris_carbon",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"device": "/dev/vdb",
|
||||||
|
"id": "eb61b11a-4176-41d1-8bcc-f6c0024730cd/ff4bfb64-6e5f-4adf-8b31-326eaef97667",
|
||||||
|
"instance_id": "eb61b11a-4176-41d1-8bcc-f6c0024730cd",
|
||||||
|
"multiattach": null,
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"timeouts": null,
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume_id": "ff4bfb64-6e5f-4adf-8b31-326eaef97667"
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"module.instance_with_data_volume.openstack_blockstorage_volume_v3.instance_data_volume",
|
||||||
|
"module.instance_with_data_volume.openstack_compute_instance_v2.instance_with_data_volume"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"index_key": "geoserver_marineenvironmentalindicators",
|
"index_key": "geoserver_marineenvironmentalindicators",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
|
|
|
@ -25,34 +25,61 @@ module "common_variables" {
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Creates the server group "grsf-publisher"
|
# Creates the server group "grsf-publisher" for context GRSF
|
||||||
#
|
#
|
||||||
resource "openstack_compute_servergroup_v2" "grsf_publisher_server_group" {
|
resource "openstack_compute_servergroup_v2" "grsf_publisher_grsf_server_group" {
|
||||||
name = "grsf-publisher"
|
name = "grsf-publisher-grsf"
|
||||||
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Creates the server group "grsf-publisher" for context GRSF_Admin
|
||||||
|
#
|
||||||
|
resource "openstack_compute_servergroup_v2" "grsf_publisher_grsf_admin_server_group" {
|
||||||
|
name = "grsf-publisher-grsf-admin"
|
||||||
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Creates the server group "grsf-publisher" for context GRSF_Pre
|
||||||
|
#
|
||||||
|
resource "openstack_compute_servergroup_v2" "grsf_publisher_grsf_pre_server_group" {
|
||||||
|
name = "grsf-publisher-grsf-pre"
|
||||||
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
module "instance_without_data_volume" {
|
module "instance_without_data_volume" {
|
||||||
source = "../../modules/instance_without_data_volume"
|
source = "../../modules/instance_without_data_volume"
|
||||||
|
|
||||||
instances_without_data_volume_map = {
|
instances_without_data_volume_map = {
|
||||||
grsf_publisher_1 = {
|
grsf_publisher = {
|
||||||
name = "grsf-publisher-1",
|
name = "grsf-publisher-grsf",
|
||||||
description = "This instance serves GRSF Publisher service",
|
description = "This instance serves GRSF Publisher service for GRSF VRE",
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
||||||
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_server_group.id],
|
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_grsf_server_group.id],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
},
|
},
|
||||||
grsf_publisher_2 = {
|
grsf_publisher_grsf_admin = {
|
||||||
name = "grsf-publisher-2",
|
name = "grsf-publisher-grsf-admin",
|
||||||
description = "This instance serves GRSF Publisher service",
|
description = "This instance serves GRSF Publisher service for GRSF_Admin VRE",
|
||||||
flavor = module.common_variables.flavor_list.m1_medium,
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
||||||
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_server_group.id],
|
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_grsf_admin_server_group.id],
|
||||||
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
|
},
|
||||||
|
grsf_publisher_grsf_pre = {
|
||||||
|
name = "grsf-publisher-grsf-pre",
|
||||||
|
description = "This instance serves GRSF Publisher service for GRSF_Pre VRE",
|
||||||
|
flavor = module.common_variables.flavor_list.m1_medium,
|
||||||
|
networks = [data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name],
|
||||||
|
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.debugging_from_jump_node],
|
||||||
|
server_groups_ids = [openstack_compute_servergroup_v2.grsf_publisher_grsf_pre_server_group.id],
|
||||||
image_ref = module.common_variables.ubuntu_1804
|
image_ref = module.common_variables.ubuntu_1804
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "1.6.4",
|
"terraform_version": "1.6.4",
|
||||||
"serial": 4,
|
"serial": 18,
|
||||||
"lineage": "0b64de5a-dac9-ddbd-d6e4-0be2e126b931",
|
"lineage": "0b64de5a-dac9-ddbd-d6e4-0be2e126b931",
|
||||||
"outputs": {},
|
"outputs": {},
|
||||||
"resources": [
|
"resources": [
|
||||||
|
@ -386,15 +386,77 @@
|
||||||
{
|
{
|
||||||
"mode": "managed",
|
"mode": "managed",
|
||||||
"type": "openstack_compute_servergroup_v2",
|
"type": "openstack_compute_servergroup_v2",
|
||||||
"name": "grsf_publisher_server_group",
|
"name": "grsf_publisher_grsf_admin_server_group",
|
||||||
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
"instances": [
|
"instances": [
|
||||||
{
|
{
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"id": "84f36b86-904a-4f5f-8e4d-e89108e18baf",
|
"id": "9d0f96ef-e87c-45e2-aaf5-5fd04d43fce5",
|
||||||
"members": [],
|
"members": [
|
||||||
"name": "grsf-publisher",
|
"d1e441de-014d-4171-98d1-a28907c443d0"
|
||||||
|
],
|
||||||
|
"name": "grsf-publisher-grsf-admin",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "grsf_publisher_grsf_pre_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "1fcc338a-3e10-40a3-80d7-cd57b9161ec8",
|
||||||
|
"members": [
|
||||||
|
"aa8dfda5-b3c8-47cf-8ccd-f27ed45326ce"
|
||||||
|
],
|
||||||
|
"name": "grsf-publisher-grsf-pre",
|
||||||
|
"policies": [
|
||||||
|
"soft-anti-affinity"
|
||||||
|
],
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"max_server_per_host": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"value_specs": null
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "bnVsbA=="
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "openstack_compute_servergroup_v2",
|
||||||
|
"name": "grsf_publisher_grsf_server_group",
|
||||||
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "a88fdb71-e1ed-410d-94c8-6cbe30668b3b",
|
||||||
|
"members": [
|
||||||
|
"10e5cc37-69a8-47d9-98ca-5f3ab726b85b"
|
||||||
|
],
|
||||||
|
"name": "grsf-publisher-grsf",
|
||||||
"policies": [
|
"policies": [
|
||||||
"soft-anti-affinity"
|
"soft-anti-affinity"
|
||||||
],
|
],
|
||||||
|
@ -419,10 +481,10 @@
|
||||||
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
|
||||||
"instances": [
|
"instances": [
|
||||||
{
|
{
|
||||||
"index_key": "grsf_publisher_1",
|
"index_key": "grsf_publisher",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"access_ip_v4": "10.1.43.149",
|
"access_ip_v4": "10.1.43.71",
|
||||||
"access_ip_v6": "",
|
"access_ip_v6": "",
|
||||||
"admin_pass": null,
|
"admin_pass": null,
|
||||||
"all_metadata": {},
|
"all_metadata": {},
|
||||||
|
@ -445,24 +507,24 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"config_drive": null,
|
"config_drive": null,
|
||||||
"created": "2023-12-18 14:22:32 +0000 UTC",
|
"created": "2024-01-11 11:04:17 +0000 UTC",
|
||||||
"flavor_id": "4",
|
"flavor_id": "4",
|
||||||
"flavor_name": "m1.medium",
|
"flavor_name": "m1.medium",
|
||||||
"floating_ip": null,
|
"floating_ip": null,
|
||||||
"force_delete": false,
|
"force_delete": false,
|
||||||
"id": "1d0a8f11-cd09-4e37-a91f-f45bd7367179",
|
"id": "10e5cc37-69a8-47d9-98ca-5f3ab726b85b",
|
||||||
"image_id": "Attempt to boot from volume - no image supplied",
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
"image_name": null,
|
"image_name": null,
|
||||||
"key_pair": "pc-frosini_key",
|
"key_pair": "pc-frosini_key",
|
||||||
"metadata": null,
|
"metadata": null,
|
||||||
"name": "grsf-publisher-1",
|
"name": "grsf-publisher-grsf",
|
||||||
"network": [
|
"network": [
|
||||||
{
|
{
|
||||||
"access_network": false,
|
"access_network": false,
|
||||||
"fixed_ip_v4": "10.1.43.149",
|
"fixed_ip_v4": "10.1.43.71",
|
||||||
"fixed_ip_v6": "",
|
"fixed_ip_v6": "",
|
||||||
"floating_ip": "",
|
"floating_ip": "",
|
||||||
"mac": "fa:16:3e:9b:2e:e7",
|
"mac": "fa:16:3e:08:69:47",
|
||||||
"name": "d4s-production-cloud-main",
|
"name": "d4s-production-cloud-main",
|
||||||
"port": "",
|
"port": "",
|
||||||
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
@ -474,11 +536,11 @@
|
||||||
"region": "isti_area_pi_1",
|
"region": "isti_area_pi_1",
|
||||||
"scheduler_hints": [
|
"scheduler_hints": [
|
||||||
{
|
{
|
||||||
"additional_properties": null,
|
"additional_properties": {},
|
||||||
"build_near_host_ip": "",
|
"build_near_host_ip": "",
|
||||||
"different_cell": [],
|
"different_cell": [],
|
||||||
"different_host": [],
|
"different_host": [],
|
||||||
"group": "84f36b86-904a-4f5f-8e4d-e89108e18baf",
|
"group": "a88fdb71-e1ed-410d-94c8-6cbe30668b3b",
|
||||||
"query": [],
|
"query": [],
|
||||||
"same_host": [],
|
"same_host": [],
|
||||||
"target_cell": ""
|
"target_cell": ""
|
||||||
|
@ -490,10 +552,10 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-18 14:23:14 +0000 UTC",
|
"updated": "2024-01-11 11:11:23 +0000 UTC",
|
||||||
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
"user_data": "",
|
||||||
"vendor_options": [],
|
"vendor_options": [],
|
||||||
"volume": []
|
"volume": []
|
||||||
},
|
},
|
||||||
|
@ -501,14 +563,16 @@
|
||||||
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"data.terraform_remote_state.privnet_dns_router",
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
"openstack_compute_servergroup_v2.grsf_publisher_server_group"
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_admin_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_pre_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_server_group"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"index_key": "grsf_publisher_2",
|
"index_key": "grsf_publisher_grsf_admin",
|
||||||
"schema_version": 0,
|
"schema_version": 0,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"access_ip_v4": "10.1.43.59",
|
"access_ip_v4": "10.1.41.145",
|
||||||
"access_ip_v6": "",
|
"access_ip_v6": "",
|
||||||
"admin_pass": null,
|
"admin_pass": null,
|
||||||
"all_metadata": {},
|
"all_metadata": {},
|
||||||
|
@ -531,24 +595,24 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"config_drive": null,
|
"config_drive": null,
|
||||||
"created": "2023-12-18 14:22:33 +0000 UTC",
|
"created": "2024-01-11 11:04:17 +0000 UTC",
|
||||||
"flavor_id": "4",
|
"flavor_id": "4",
|
||||||
"flavor_name": "m1.medium",
|
"flavor_name": "m1.medium",
|
||||||
"floating_ip": null,
|
"floating_ip": null,
|
||||||
"force_delete": false,
|
"force_delete": false,
|
||||||
"id": "325ca4aa-2ec1-4bc7-ac25-d7395b91d820",
|
"id": "d1e441de-014d-4171-98d1-a28907c443d0",
|
||||||
"image_id": "Attempt to boot from volume - no image supplied",
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
"image_name": null,
|
"image_name": null,
|
||||||
"key_pair": "pc-frosini_key",
|
"key_pair": "pc-frosini_key",
|
||||||
"metadata": null,
|
"metadata": null,
|
||||||
"name": "grsf-publisher-2",
|
"name": "grsf-publisher-grsf-admin",
|
||||||
"network": [
|
"network": [
|
||||||
{
|
{
|
||||||
"access_network": false,
|
"access_network": false,
|
||||||
"fixed_ip_v4": "10.1.43.59",
|
"fixed_ip_v4": "10.1.41.145",
|
||||||
"fixed_ip_v6": "",
|
"fixed_ip_v6": "",
|
||||||
"floating_ip": "",
|
"floating_ip": "",
|
||||||
"mac": "fa:16:3e:cc:8c:7a",
|
"mac": "fa:16:3e:10:a0:1e",
|
||||||
"name": "d4s-production-cloud-main",
|
"name": "d4s-production-cloud-main",
|
||||||
"port": "",
|
"port": "",
|
||||||
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
@ -560,11 +624,11 @@
|
||||||
"region": "isti_area_pi_1",
|
"region": "isti_area_pi_1",
|
||||||
"scheduler_hints": [
|
"scheduler_hints": [
|
||||||
{
|
{
|
||||||
"additional_properties": null,
|
"additional_properties": {},
|
||||||
"build_near_host_ip": "",
|
"build_near_host_ip": "",
|
||||||
"different_cell": [],
|
"different_cell": [],
|
||||||
"different_host": [],
|
"different_host": [],
|
||||||
"group": "84f36b86-904a-4f5f-8e4d-e89108e18baf",
|
"group": "9d0f96ef-e87c-45e2-aaf5-5fd04d43fce5",
|
||||||
"query": [],
|
"query": [],
|
||||||
"same_host": [],
|
"same_host": [],
|
||||||
"target_cell": ""
|
"target_cell": ""
|
||||||
|
@ -576,9 +640,9 @@
|
||||||
"traffic_from_the_main_load_balancers"
|
"traffic_from_the_main_load_balancers"
|
||||||
],
|
],
|
||||||
"stop_before_destroy": false,
|
"stop_before_destroy": false,
|
||||||
"tags": null,
|
"tags": [],
|
||||||
"timeouts": null,
|
"timeouts": null,
|
||||||
"updated": "2023-12-18 14:23:24 +0000 UTC",
|
"updated": "2024-01-11 11:05:33 +0000 UTC",
|
||||||
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
||||||
"vendor_options": [],
|
"vendor_options": [],
|
||||||
"volume": []
|
"volume": []
|
||||||
|
@ -587,7 +651,97 @@
|
||||||
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"data.terraform_remote_state.privnet_dns_router",
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
"openstack_compute_servergroup_v2.grsf_publisher_server_group"
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_admin_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_pre_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_server_group"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"index_key": "grsf_publisher_grsf_pre",
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"access_ip_v4": "10.1.43.98",
|
||||||
|
"access_ip_v6": "",
|
||||||
|
"admin_pass": null,
|
||||||
|
"all_metadata": {},
|
||||||
|
"all_tags": [],
|
||||||
|
"availability_zone": "cnr-isti-nova-a",
|
||||||
|
"availability_zone_hints": "cnr-isti-nova-a",
|
||||||
|
"block_device": [
|
||||||
|
{
|
||||||
|
"boot_index": 0,
|
||||||
|
"delete_on_termination": false,
|
||||||
|
"destination_type": "volume",
|
||||||
|
"device_type": "",
|
||||||
|
"disk_bus": "",
|
||||||
|
"guest_format": "",
|
||||||
|
"multiattach": false,
|
||||||
|
"source_type": "image",
|
||||||
|
"uuid": "7ed6a2cd-2b07-482e-8ce4-f018dff16c89",
|
||||||
|
"volume_size": 10,
|
||||||
|
"volume_type": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"config_drive": null,
|
||||||
|
"created": "2024-01-11 11:04:18 +0000 UTC",
|
||||||
|
"flavor_id": "4",
|
||||||
|
"flavor_name": "m1.medium",
|
||||||
|
"floating_ip": null,
|
||||||
|
"force_delete": false,
|
||||||
|
"id": "aa8dfda5-b3c8-47cf-8ccd-f27ed45326ce",
|
||||||
|
"image_id": "Attempt to boot from volume - no image supplied",
|
||||||
|
"image_name": null,
|
||||||
|
"key_pair": "pc-frosini_key",
|
||||||
|
"metadata": null,
|
||||||
|
"name": "grsf-publisher-grsf-pre",
|
||||||
|
"network": [
|
||||||
|
{
|
||||||
|
"access_network": false,
|
||||||
|
"fixed_ip_v4": "10.1.43.98",
|
||||||
|
"fixed_ip_v6": "",
|
||||||
|
"floating_ip": "",
|
||||||
|
"mac": "fa:16:3e:13:6e:e7",
|
||||||
|
"name": "d4s-production-cloud-main",
|
||||||
|
"port": "",
|
||||||
|
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"network_mode": null,
|
||||||
|
"personality": [],
|
||||||
|
"power_state": "active",
|
||||||
|
"region": "isti_area_pi_1",
|
||||||
|
"scheduler_hints": [
|
||||||
|
{
|
||||||
|
"additional_properties": {},
|
||||||
|
"build_near_host_ip": "",
|
||||||
|
"different_cell": [],
|
||||||
|
"different_host": [],
|
||||||
|
"group": "1fcc338a-3e10-40a3-80d7-cd57b9161ec8",
|
||||||
|
"query": [],
|
||||||
|
"same_host": [],
|
||||||
|
"target_cell": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"security_groups": [
|
||||||
|
"debugging_from_jump_node",
|
||||||
|
"default_for_all",
|
||||||
|
"traffic_from_the_main_load_balancers"
|
||||||
|
],
|
||||||
|
"stop_before_destroy": false,
|
||||||
|
"tags": [],
|
||||||
|
"timeouts": null,
|
||||||
|
"updated": "2024-01-11 11:05:15 +0000 UTC",
|
||||||
|
"user_data": "ef3d6e5deb29bd1e5de5a76ae6860f3ee872738c",
|
||||||
|
"vendor_options": [],
|
||||||
|
"volume": []
|
||||||
|
},
|
||||||
|
"sensitive_attributes": [],
|
||||||
|
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
|
||||||
|
"dependencies": [
|
||||||
|
"data.terraform_remote_state.privnet_dns_router",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_admin_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_pre_server_group",
|
||||||
|
"openstack_compute_servergroup_v2.grsf_publisher_grsf_server_group"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
# Define required providers
|
||||||
|
terraform {
|
||||||
|
required_version = ">= 0.14.0"
|
||||||
|
required_providers {
|
||||||
|
openstack = {
|
||||||
|
source = "terraform-provider-openstack/openstack"
|
||||||
|
version = "~> 1.53.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data "terraform_remote_state" "privnet_dns_router" {
|
||||||
|
backend = "local"
|
||||||
|
|
||||||
|
config = {
|
||||||
|
path = "../project-setup/terraform.tfstate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module "liferay" {
|
||||||
|
source = "../../modules/liferay"
|
||||||
|
liferay_data = {
|
||||||
|
affinity_policy = "anti-affinity"
|
||||||
|
srv_name = "lr62"
|
||||||
|
vm_count = 2
|
||||||
|
vm_flavor = "m1.large"
|
||||||
|
boot_vol_size = 30
|
||||||
|
share_description = "NFS share for the liferay production static data"
|
||||||
|
share_name = "liferay_production_nfs_share"
|
||||||
|
}
|
||||||
|
|
||||||
|
liferay_ip_addrs = ["10.1.40.40", "10.1.40.41"]
|
||||||
|
|
||||||
|
liferay_recordsets = {
|
||||||
|
liferay_main_record = {
|
||||||
|
name = join(".", ["infra-gateway", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name]),
|
||||||
|
description = "Liferay Production"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
output "liferay_data" {
|
||||||
|
value = module.liferay.liferay_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_ip_addrs" {
|
||||||
|
value = module.liferay.liferay_ip_addrs
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_recordsets" {
|
||||||
|
value = module.liferay.liferay_recordsets
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_port_data" {
|
||||||
|
value = module.liferay.nfs_port_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_volume_data" {
|
||||||
|
value = module.liferay.liferay_nfs_volume_data
|
||||||
|
}
|
||||||
|
|
||||||
|
output "liferay_nfs_volume_acls" {
|
||||||
|
value = module.liferay.liferay_nfs_volume_acls
|
||||||
|
sensitive = true
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
provider "openstack" {
|
||||||
|
cloud = "d4s-production"
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue