generated from pagopa/template-devops-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(wallet): Add pipelines for
payment-wallet-event-dispatcher
(#323)
- Loading branch information
1 parent
5244aa1
commit 1cb09f9
Showing
3 changed files
with
135 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 126 additions & 0 deletions
126
azure-devops/wallet/06_pagopa-wallet-event-dispatcher-service.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
variable "pagopa-payment-wallet-event-dispatcher-service" { | ||
default = { | ||
repository = { | ||
organization = "pagopa" | ||
name = "pagopa-payment-wallet-event-dispatcher-service" | ||
branch_name = "refs/heads/main" | ||
pipelines_path = ".devops" | ||
yml_prefix_name = null | ||
} | ||
pipeline = { | ||
enable_code_review = true | ||
enable_deploy = true | ||
sonarcloud = { | ||
# TODO azure devops terraform provider does not support SonarCloud service endpoint | ||
service_connection = "SONARCLOUD-SERVICE-CONN" | ||
org = "pagopa" | ||
project_key = "pagopa_pagopa-payment-wallet-event-dispatcher-service" | ||
project_name = "pagopa-payment-wallet-event-dispatcher-service" | ||
} | ||
} | ||
} | ||
} | ||
|
||
locals { | ||
# global vars | ||
pagopa-payment-wallet-event-dispatcher-service-variables = { | ||
cache_version_id = "v1" | ||
default_branch = var.pagopa-payment-wallet-event-dispatcher-service.repository.branch_name | ||
} | ||
# global secrets | ||
pagopa-payment-wallet-event-dispatcher-service-variables_secret = { | ||
|
||
} | ||
# code_review vars | ||
pagopa-payment-wallet-event-dispatcher-service-variables_code_review = { | ||
danger_github_api_token = "skip" | ||
sonarcloud_service_conn = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.sonarcloud.service_connection | ||
sonarcloud_org = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.sonarcloud.org | ||
sonarcloud_project_key = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.sonarcloud.project_key | ||
sonarcloud_project_name = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.sonarcloud.project_name | ||
} | ||
# code_review secrets | ||
pagopa-payment-wallet-event-dispatcher-service-variables_secret_code_review = { | ||
|
||
} | ||
# deploy vars | ||
pagopa-payment-wallet-event-dispatcher-service-variables_deploy = { | ||
github_connection = data.azuredevops_serviceendpoint_github.github_rw.service_endpoint_name | ||
|
||
# acr section | ||
k8s_image_repository_name = replace(var.pagopa-payment-wallet-event-dispatcher-service.repository.name, "-", "") | ||
dev_container_registry_service_conn = data.azuredevops_serviceendpoint_azurecr.dev.id | ||
dev_container_registry_name = data.azuredevops_serviceendpoint_azurecr.dev.service_endpoint_name | ||
uat_container_registry_service_conn = data.azuredevops_serviceendpoint_azurecr.uat.id | ||
uat_container_registry_name = data.azuredevops_serviceendpoint_azurecr.uat.service_endpoint_name | ||
|
||
# aks section | ||
dev_kubernetes_service_conn = azuredevops_serviceendpoint_kubernetes.aks_dev.id | ||
uat_kubernetes_service_conn = azuredevops_serviceendpoint_kubernetes.aks_uat.id | ||
|
||
dev_container_namespace = "pagopadcommonacr.azurecr.io" | ||
uat_container_namespace = "pagopaucommonacr.azurecr.io" | ||
# prod_container_namespace = "pagopapcommonacr.azurecr.io" | ||
|
||
} | ||
# deploy secrets | ||
pagopa-payment-wallet-event-dispatcher-service-variables_secret_deploy = { | ||
git_mail = module.secrets.values["azure-devops-github-EMAIL"].value | ||
git_username = module.secrets.values["azure-devops-github-USERNAME"].value | ||
tenant_id = data.azurerm_client_config.current.tenant_id | ||
} | ||
} | ||
|
||
module "pagopa-payment-wallet-event-dispatcher-service_code_review" { | ||
source = "git::https://github.com/pagopa/azuredevops-tf-modules.git//azuredevops_build_definition_code_review?ref=v5.1.1" | ||
count = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.enable_code_review == true ? 1 : 0 | ||
|
||
project_id = data.azuredevops_project.project.id | ||
repository = var.pagopa-payment-wallet-event-dispatcher-service.repository | ||
github_service_connection_id = data.azuredevops_serviceendpoint_github.github_pr.service_endpoint_id | ||
path = "${local.domain}\\pagopa-payment-wallet-event-dispatcher-service" | ||
|
||
variables = merge( | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables, | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_code_review, | ||
) | ||
|
||
variables_secret = merge( | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_secret, | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_secret_code_review, | ||
) | ||
|
||
service_connection_ids_authorization = [ | ||
data.azuredevops_serviceendpoint_github.github_ro.id, | ||
local.azuredevops_serviceendpoint_sonarcloud_id | ||
] | ||
} | ||
|
||
module "pagopa-payment-wallet-event-dispatcher-service_deploy" { | ||
source = "git::https://github.com/pagopa/azuredevops-tf-modules.git//azuredevops_build_definition_deploy?ref=v4.2.1" | ||
count = var.pagopa-payment-wallet-event-dispatcher-service.pipeline.enable_deploy == true ? 1 : 0 | ||
|
||
project_id = data.azuredevops_project.project.id | ||
repository = var.pagopa-payment-wallet-event-dispatcher-service.repository | ||
github_service_connection_id = data.azuredevops_serviceendpoint_github.github_rw.service_endpoint_id | ||
path = "${local.domain}\\pagopa-payment-wallet-event-dispatcher-service" | ||
|
||
variables = merge( | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables, | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_deploy, | ||
) | ||
|
||
variables_secret = merge( | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_secret, | ||
local.pagopa-payment-wallet-event-dispatcher-service-variables_secret_deploy, | ||
) | ||
|
||
service_connection_ids_authorization = [ | ||
data.azuredevops_serviceendpoint_github.github_ro.id, | ||
data.azuredevops_serviceendpoint_azurecr.dev.id, | ||
# azuredevops_serviceendpoint_azurecr.acr_aks_uat.id, | ||
# azuredevops_serviceendpoint_azurecr.acr_aks_prod.id, | ||
data.azuredevops_serviceendpoint_azurerm.dev.id, | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters