Skip to content

Commit

Permalink
feat: Added env label gh runner (#2624)
Browse files Browse the repository at this point in the history
added env label gh runner
  • Loading branch information
mamari90 authored Dec 2, 2024
1 parent 09e95c1 commit bdccc62
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/domains/afm-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-afm-calculator",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/apiconfig-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-api-config-cache",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/bizevents-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-biz-events-service",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/fdr-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-fdr-nodo-dei-pagamenti", # FdR-1
Expand Down
2 changes: 1 addition & 1 deletion src/domains/gps-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-gpd-upload",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/nodo-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-stand-in-manager",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/payopt-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-payment-options-service",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/printit-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-print-payment-notice-service",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/receipts-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-receipt-pdf-generator",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/selfcare-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-selfcare-ms-backoffice-backend",
Expand Down
2 changes: 1 addition & 1 deletion src/domains/shared-app/07_gh_runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "gh_runner_job" {
environment_name = local.tools_cae_name
environment_rg = local.tools_cae_rg
gh_identity_suffix = "job-01"
runner_labels = ["self-hosted-job"]
runner_labels = ["self-hosted-job", "${var.env}"]
gh_repositories = [
{
name : "pagopa-shared-toolbox",
Expand Down

0 comments on commit bdccc62

Please sign in to comment.