From 0db95c114fb76240e52a7ba4f7ed6acb24eb3de2 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Tue, 12 Dec 2023 18:16:12 +0100 Subject: [PATCH] Created terraform-plan for accounting-service --- .../d4s-preprod/accounting-service/main.tf | 58 +++++++++++++++++++ .../accounting-service/provider.tf | 3 + .../d4s-production/accounting-service/main.tf | 58 +++++++++++++++++++ .../accounting-service/provider.tf | 3 + 4 files changed, 122 insertions(+) create mode 100644 openstack-tf/d4s-preprod/accounting-service/main.tf create mode 100644 openstack-tf/d4s-preprod/accounting-service/provider.tf create mode 100644 openstack-tf/d4s-production/accounting-service/main.tf create mode 100644 openstack-tf/d4s-production/accounting-service/provider.tf diff --git a/openstack-tf/d4s-preprod/accounting-service/main.tf b/openstack-tf/d4s-preprod/accounting-service/main.tf new file mode 100644 index 0000000..2222299 --- /dev/null +++ b/openstack-tf/d4s-preprod/accounting-service/main.tf @@ -0,0 +1,58 @@ +# 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/instance_without_data_volume" + + instances_without_data_volume_map = { + accounting_service_1 = { + name = "accounting-service-1", + description = "This instance serves accounting service", + flavor = module.common_variables.flavor_list.m1_medium, + networks = ["d4s-pre-cloud-main", "timescaledb-net"], + security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers], + server_groups_ids = [openstack_compute_servergroup_v2.accounting_service_server_group.id], + image_ref = module.common_variables.ubuntu_1804 + }, + accounting_service_2 = { + name = "accounting-service-2", + description = "This instance serves accounting service", + flavor = module.common_variables.flavor_list.m1_medium, + networks = ["d4s-pre-cloud-main", "timescaledb-net"], + security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers], + server_groups_ids = [openstack_compute_servergroup_v2.accounting_service_server_group.id], + image_ref = module.common_variables.ubuntu_1804 + } + } +} diff --git a/openstack-tf/d4s-preprod/accounting-service/provider.tf b/openstack-tf/d4s-preprod/accounting-service/provider.tf new file mode 100644 index 0000000..5c9deb7 --- /dev/null +++ b/openstack-tf/d4s-preprod/accounting-service/provider.tf @@ -0,0 +1,3 @@ +provider "openstack" { + cloud = "d4s-pre" +} diff --git a/openstack-tf/d4s-production/accounting-service/main.tf b/openstack-tf/d4s-production/accounting-service/main.tf new file mode 100644 index 0000000..5a8376c --- /dev/null +++ b/openstack-tf/d4s-production/accounting-service/main.tf @@ -0,0 +1,58 @@ +# 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/instance_without_data_volume" + + instances_without_data_volume_map = { + accounting_service_1 = { + name = "accounting-service-1", + description = "This instance serves accounting service", + flavor = module.common_variables.flavor_list.m1_medium, + networks = ["d4s-production-cloud-main", "timescaledb-net"], + security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers], + server_groups_ids = [openstack_compute_servergroup_v2.accounting_service_server_group.id], + image_ref = module.common_variables.ubuntu_1804 + }, + accounting_service_2 = { + name = "accounting-service-2", + description = "This instance serves accounting service", + flavor = module.common_variables.flavor_list.m1_medium, + networks = ["d4s-production-cloud-main", "timescaledb-net"], + security_groups = [module.common_variables.security_group_list.default, module.common_variables.security_group_list.http_and_https_from_the_load_balancers], + server_groups_ids = [openstack_compute_servergroup_v2.accounting_service_server_group.id], + image_ref = module.common_variables.ubuntu_1804 + } + } +} diff --git a/openstack-tf/d4s-production/accounting-service/provider.tf b/openstack-tf/d4s-production/accounting-service/provider.tf new file mode 100644 index 0000000..ca8de74 --- /dev/null +++ b/openstack-tf/d4s-production/accounting-service/provider.tf @@ -0,0 +1,3 @@ +provider "openstack" { + cloud = "d4s-production" +}