@pagopa/dx-cli 0.19.0 → 0.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagopa/dx-cli",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "type": "module",
5
5
  "description": "A CLI useful to manage DX tools.",
6
6
  "repository": {
@@ -1,3 +1,9 @@
1
+ locals {
2
+ bootstrapper_tags = merge(local.tags, {
3
+ Source = "https://github.com/{{@root.github.owner}}/{{@root.github.repo}}/blob/main/infra/bootstrapper/{{@root.env.name}}"
4
+ })
5
+ }
6
+
1
7
  {{#each cloudAccountsByCsp.azure}}
2
8
  {{#if (eq displayName "PROD-IO")}}
3
9
  module "azure-{{displayName}}_bootstrap" {
@@ -45,7 +51,7 @@ module "azure-{{displayName}}_bootstrap" {
45
51
  nat_gateway_resource_group_id = data.azurerm_resource_group.common_itn_01.id
46
52
  opex_resource_group_id = data.azurerm_resource_group.dashboards.id
47
53
 
48
- tags = local.tags
54
+ tags = local.bootstrapper_tags
49
55
  }
50
56
  {{else}}
51
57
  module "azure-{{displayName}}_core_values" {
@@ -112,7 +118,7 @@ module "azure-{{displayName}}_bootstrap" {
112
118
  private_dns_zone_resource_group_id = module.azure-{{displayName}}_core_values.network_resource_group_id
113
119
  opex_resource_group_id = module.azure-{{displayName}}_core_values.opex_resource_group_id
114
120
 
115
- tags = local.tags
121
+ tags = local.bootstrapper_tags
116
122
  }
117
123
  {{/if}}
118
124
  {{/each}}
@@ -12,7 +12,9 @@ module "azure-{{displayName}}_core" {
12
12
  app_name = "core"
13
13
  })
14
14
 
15
- tags = local.tags
15
+ tags = merge(local.tags, {
16
+ Source = "https://github.com/{{@root.github.owner}}/{{@root.github.repo}}/blob/main/infra/core/{{@root.env.name}}"
17
+ })
16
18
  }
17
19
 
18
20
  {{/each}}
@@ -5,3 +5,6 @@ packages:
5
5
  linkWorkspacePackages: true
6
6
  packageImportMethod: "clone-or-copy"
7
7
  cleanupUnusedCatalogs: true
8
+
9
+ onlyBuiltDependencies:
10
+ - nx