2023-12-12 17:52:15 +01:00
|
|
|
# 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"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
2023-12-13 15:05:37 +01:00
|
|
|
# Creates the server group "geonetwork"
|
2023-12-12 17:52:15 +01:00
|
|
|
#
|
2023-12-13 15:05:37 +01:00
|
|
|
resource "openstack_compute_servergroup_v2" "geonetwork_server_group" {
|
|
|
|
name = "geonetwork"
|
2023-12-12 17:52:15 +01:00
|
|
|
policies = [module.common_variables.policy_list.soft_anti_affinity]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
module "instance_with_data_volume" {
|
|
|
|
source = "../../modules/instance_with_data_volume"
|
|
|
|
|
|
|
|
instances_with_data_volume_map = {
|
|
|
|
geonetwork_ariadne = {
|
|
|
|
name = "geonetwork-ariadne",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_ariadne_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_fisherieatlas = {
|
|
|
|
name = "geonetwork-fisherieatlas",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_fisherieatlas_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_grsf = {
|
|
|
|
name = "geonetwork-grsf",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_grsf_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_iotcss3 = {
|
|
|
|
|
|
|
|
name = "geonetwork-iotcss3",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_iotcss3_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
geonetwork_sdilab = {
|
|
|
|
name = "geonetwork-sdilab",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_sdilab_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_spatialdata = {
|
|
|
|
name = "geonetwork-spatialdata",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_spatialdata_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_wecafcfirms = {
|
|
|
|
name = "geonetwork-wecafcfirms",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_wecafcfirms_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_bluecloud = {
|
|
|
|
name = "geonetwork-bluecloud",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_bluecloud_data_volume",
|
|
|
|
size = "30",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_tunaatlas = {
|
|
|
|
name = "geonetwork-tunaatlas",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m2_small,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_tunaatlas_data_volume",
|
|
|
|
size = "20",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geonetwork_prod = {
|
|
|
|
name = "geonetwork-prod",
|
|
|
|
description = "This instance serves geonetwork service",
|
|
|
|
flavor = module.common_variables.flavor_list.m1_large,
|
|
|
|
networks = ["d4s-production-cloud-main",module.common_variables.networks_list.shared_postgresql],
|
|
|
|
security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers],
|
2023-12-13 15:05:37 +01:00
|
|
|
server_groups_ids = [openstack_compute_servergroup_v2.geonetwork_server_group.id],
|
2023-12-12 17:52:15 +01:00
|
|
|
image_ref = module.common_variables.ubuntu_1804
|
|
|
|
volume = {
|
|
|
|
name = "geonetwork_prod_data_volume",
|
|
|
|
size = "40",
|
|
|
|
device = "/dev/vdb"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|