dbt-platform-helper 13.0.2__py3-none-any.whl → 13.1.1__py3-none-any.whl

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.

Potentially problematic release.


This version of dbt-platform-helper might be problematic. Click here for more details.

@@ -10,9 +10,9 @@ import yaml
10
10
  from schema import SchemaError
11
11
 
12
12
  from dbt_platform_helper.constants import PLATFORM_CONFIG_FILE
13
- from dbt_platform_helper.domain.config_validator import ConfigValidator
14
13
  from dbt_platform_helper.domain.copilot_environment import CopilotTemplating
15
14
  from dbt_platform_helper.providers.config import ConfigProvider
15
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
16
16
  from dbt_platform_helper.providers.files import FileProvider
17
17
  from dbt_platform_helper.utils.application import get_application_name
18
18
  from dbt_platform_helper.utils.application import load_application
@@ -1,13 +1,13 @@
1
1
  import click
2
2
 
3
3
  from dbt_platform_helper.constants import DEFAULT_TERRAFORM_PLATFORM_MODULES_VERSION
4
- from dbt_platform_helper.domain.config_validator import ConfigValidator
5
4
  from dbt_platform_helper.domain.copilot_environment import CopilotEnvironment
6
5
  from dbt_platform_helper.domain.maintenance_page import MaintenancePage
7
6
  from dbt_platform_helper.domain.terraform_environment import TerraformEnvironment
8
7
  from dbt_platform_helper.platform_exception import PlatformException
9
8
  from dbt_platform_helper.providers.cloudformation import CloudFormation
10
9
  from dbt_platform_helper.providers.config import ConfigProvider
10
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
11
11
  from dbt_platform_helper.providers.io import ClickIOProvider
12
12
  from dbt_platform_helper.providers.vpc import VpcProvider
13
13
  from dbt_platform_helper.utils.application import load_application
@@ -2,9 +2,9 @@
2
2
  import click
3
3
 
4
4
  from dbt_platform_helper.constants import DEFAULT_TERRAFORM_PLATFORM_MODULES_VERSION
5
- from dbt_platform_helper.domain.config_validator import ConfigValidator
6
5
  from dbt_platform_helper.domain.pipelines import Pipelines
7
6
  from dbt_platform_helper.providers.config import ConfigProvider
7
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
8
8
  from dbt_platform_helper.providers.ecr import ECRProvider
9
9
  from dbt_platform_helper.providers.io import ClickIOProvider
10
10
  from dbt_platform_helper.providers.terraform_manifest import TerraformManifestProvider
@@ -132,7 +132,7 @@ class CopilotEnvironment:
132
132
  class CopilotTemplating:
133
133
  def __init__(
134
134
  self,
135
- file_provider: FileProvider = None,
135
+ file_provider: FileProvider = FileProvider(),
136
136
  io: ClickIOProvider = ClickIOProvider(),
137
137
  # TODO file_provider can be moved up a layer. File writing can be the responsibility of CopilotEnvironment generate
138
138
  # Or we align with PlatformTerraformManifestGenerator and rename from Templating to reflect the file writing responsibility
@@ -6,9 +6,9 @@ import boto3
6
6
  from boto3 import Session
7
7
 
8
8
  from dbt_platform_helper.constants import PLATFORM_CONFIG_FILE
9
- from dbt_platform_helper.domain.config_validator import ConfigValidator
10
9
  from dbt_platform_helper.domain.maintenance_page import MaintenancePage
11
10
  from dbt_platform_helper.providers.config import ConfigProvider
11
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
12
12
  from dbt_platform_helper.providers.io import ClickIOProvider
13
13
  from dbt_platform_helper.providers.io import ClickIOProviderException
14
14
  from dbt_platform_helper.providers.vpc import Vpc
@@ -72,6 +72,16 @@ class Pipelines:
72
72
  platform_config_terraform_modules_default_version,
73
73
  )
74
74
 
75
+ # TODO - this whole code block/if-statement can fall away once the deploy_repository is a required key.
76
+ deploy_repository = ""
77
+ if "deploy_repository" in platform_config.keys():
78
+ deploy_repository = f"{platform_config['deploy_repository']}"
79
+ else:
80
+ self.io.warn(
81
+ "No `deploy_repository` key set in platform-config.yml, this will become a required key. See full platform config reference in the docs: https://platform.readme.trade.gov.uk/reference/platform-config-yml/#core-configuration"
82
+ )
83
+ deploy_repository = f"uktrade/{platform_config['application']}-deploy"
84
+
75
85
  if has_environment_pipelines:
76
86
  environment_pipelines = platform_config[ENVIRONMENT_PIPELINES_KEY]
77
87
  accounts = {
@@ -83,6 +93,7 @@ class Pipelines:
83
93
  for account in accounts:
84
94
  self._generate_terraform_environment_pipeline_manifest(
85
95
  platform_config["application"],
96
+ deploy_repository,
86
97
  account,
87
98
  terraform_platform_modules_version,
88
99
  deploy_branch,
@@ -102,7 +113,10 @@ class Pipelines:
102
113
  }
103
114
 
104
115
  self.terraform_manifest_provider.generate_codebase_pipeline_config(
105
- platform_config, terraform_platform_modules_version, ecrs_that_need_importing
116
+ platform_config,
117
+ terraform_platform_modules_version,
118
+ ecrs_that_need_importing,
119
+ deploy_repository,
106
120
  )
107
121
 
108
122
  def _clean_pipeline_config(self, pipelines_dir: Path):
@@ -113,6 +127,7 @@ class Pipelines:
113
127
  def _generate_terraform_environment_pipeline_manifest(
114
128
  self,
115
129
  application: str,
130
+ deploy_repository: str,
116
131
  aws_account: str,
117
132
  terraform_platform_modules_version: str,
118
133
  deploy_branch: str,
@@ -122,6 +137,7 @@ class Pipelines:
122
137
  contents = env_pipeline_template.render(
123
138
  {
124
139
  "application": application,
140
+ "deploy_repository": deploy_repository,
125
141
  "aws_account": aws_account,
126
142
  "terraform_platform_modules_version": terraform_platform_modules_version,
127
143
  "deploy_branch": deploy_branch,
@@ -4,8 +4,8 @@ from pathlib import Path
4
4
  from schema import SchemaError
5
5
 
6
6
  from dbt_platform_helper.constants import PLATFORM_CONFIG_FILE
7
- from dbt_platform_helper.domain.config_validator import ConfigValidator
8
- from dbt_platform_helper.domain.config_validator import ConfigValidatorError
7
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
8
+ from dbt_platform_helper.providers.config_validator import ConfigValidatorError
9
9
  from dbt_platform_helper.providers.io import ClickIOProvider
10
10
  from dbt_platform_helper.providers.platform_config_schema import PlatformConfigSchema
11
11
  from dbt_platform_helper.providers.yaml_file import FileNotFoundException
@@ -14,8 +14,8 @@ class PlatformConfigSchema:
14
14
  def schema() -> Schema:
15
15
  return Schema(
16
16
  {
17
- # The following line is for the AWS Copilot version, will be removed under DBTP-1002
18
17
  "application": str,
18
+ Optional("deploy_repository"): str,
19
19
  Optional("default_versions"): PlatformConfigSchema.__default_versions_schema(),
20
20
  Optional("environments"): PlatformConfigSchema.__environments_schema(),
21
21
  Optional("codebase_pipelines"): PlatformConfigSchema.__codebase_pipelines_schema(),
@@ -134,7 +134,7 @@ class PlatformConfigSchema:
134
134
  Optional("additional_ecr_repository"): str,
135
135
  Optional("deploy_repository_branch"): str,
136
136
  "services": [{str: [str]}],
137
- "pipelines": [
137
+ Optional("pipelines"): [
138
138
  Or(
139
139
  {
140
140
  "name": str,
@@ -435,7 +435,7 @@ class PlatformConfigSchema:
435
435
  return True
436
436
 
437
437
  @staticmethod
438
- def __valid_s3_base_definition() -> dict:
438
+ def __s3_bucket_schema() -> dict:
439
439
  def _valid_s3_bucket_arn(key):
440
440
  return Regex(
441
441
  r"^arn:aws:s3::.*",
@@ -485,6 +485,10 @@ class PlatformConfigSchema:
485
485
 
486
486
  return dict(
487
487
  {
488
+ "type": "s3",
489
+ Optional("objects"): [
490
+ {"key": str, Optional("body"): str, Optional("content_type"): str}
491
+ ],
488
492
  Optional("readonly"): bool,
489
493
  Optional("serve_static_content"): bool,
490
494
  Optional("serve_static_param_name"): str,
@@ -502,7 +506,9 @@ class PlatformConfigSchema:
502
506
  },
503
507
  Optional("cross_environment_service_access"): {
504
508
  PlatformConfigSchema.__valid_schema_key(): {
505
- "application": str,
509
+ # Deprecated: We didn't implement cross application access, no service teams are asking for it.
510
+ # application should be removed once we can confirm that no-one is using it.
511
+ Optional("application"): str,
506
512
  "environment": PlatformConfigSchema.__valid_environment_name(),
507
513
  "account": str,
508
514
  "service": str,
@@ -518,18 +524,19 @@ class PlatformConfigSchema:
518
524
  }
519
525
  )
520
526
 
521
- @staticmethod
522
- def __s3_bucket_schema() -> dict:
523
- return PlatformConfigSchema.__valid_s3_base_definition() | {
524
- "type": "s3",
525
- Optional("objects"): [
526
- {"key": str, Optional("body"): str, Optional("content_type"): str}
527
- ],
528
- }
529
-
530
527
  @staticmethod
531
528
  def __s3_bucket_policy_schema() -> dict:
532
- return PlatformConfigSchema.__valid_s3_base_definition() | {"type": "s3-policy"}
529
+ return dict(
530
+ {
531
+ "type": "s3-policy",
532
+ Optional("services"): Or("__all__", [str]),
533
+ Optional("environments"): {
534
+ PlatformConfigSchema.__valid_environment_name(): {
535
+ "bucket_name": PlatformConfigSchema.valid_s3_bucket_name,
536
+ },
537
+ },
538
+ }
539
+ )
533
540
 
534
541
  @staticmethod
535
542
  def string_matching_regex(regex_pattern: str) -> Callable:
@@ -22,6 +22,7 @@ class TerraformManifestProvider:
22
22
  platform_config: dict,
23
23
  terraform_platform_modules_version: str,
24
24
  ecr_imports: dict[str, str],
25
+ deploy_repository: str,
25
26
  ):
26
27
  default_account = self._get_account_for_env("*", platform_config)
27
28
  state_key_suffix = f"{platform_config['application']}-codebase-pipelines"
@@ -31,7 +32,9 @@ class TerraformManifestProvider:
31
32
  self._add_codebase_pipeline_locals(terraform)
32
33
  self._add_provider(terraform, default_account)
33
34
  self._add_backend(terraform, platform_config, default_account, state_key_suffix)
34
- self._add_codebase_pipeline_module(terraform, terraform_platform_modules_version)
35
+ self._add_codebase_pipeline_module(
36
+ terraform, terraform_platform_modules_version, deploy_repository
37
+ )
35
38
  self._add_imports(terraform, ecr_imports)
36
39
  self._write_terraform_json(terraform, "terraform/codebase-pipelines")
37
40
 
@@ -113,7 +116,9 @@ class TerraformManifestProvider:
113
116
  }
114
117
 
115
118
  @staticmethod
116
- def _add_codebase_pipeline_module(terraform: dict, terraform_platform_modules_version: str):
119
+ def _add_codebase_pipeline_module(
120
+ terraform: dict, terraform_platform_modules_version: str, deploy_repository: str
121
+ ):
117
122
  source = f"git::https://github.com/uktrade/terraform-platform-modules.git//codebase-pipelines?depth=1&ref={terraform_platform_modules_version}"
118
123
  terraform["module"] = {
119
124
  "codebase-pipelines": {
@@ -122,8 +127,9 @@ class TerraformManifestProvider:
122
127
  "application": "${local.application}",
123
128
  "codebase": "${each.key}",
124
129
  "repository": "${each.value.repository}",
130
+ "deploy_repository": f"{deploy_repository}",
125
131
  "additional_ecr_repository": '${lookup(each.value, "additional_ecr_repository", null)}',
126
- "pipelines": "${each.value.pipelines}",
132
+ "pipelines": '${lookup(each.value, "pipelines", [])}',
127
133
  "services": "${each.value.services}",
128
134
  "requires_image_build": '${lookup(each.value, "requires_image_build", true)}',
129
135
  "slack_channel": '${lookup(each.value, "slack_channel", "/codebuild/slack_oauth_channel")}',
@@ -40,7 +40,7 @@ module "environment-pipelines" {
40
40
 
41
41
  application = "{{ application }}"
42
42
  pipeline_name = each.key
43
- repository = "uktrade/{{ application }}-deploy"
43
+ repository = "{{ deploy_repository }}"
44
44
 
45
45
  environments = each.value.environments
46
46
  all_pipelines = local.all_pipelines
@@ -1,6 +1,6 @@
1
1
  from schema import SchemaError
2
2
 
3
- from dbt_platform_helper.domain.config_validator import ConfigValidator
3
+ from dbt_platform_helper.providers.config_validator import ConfigValidator
4
4
  from dbt_platform_helper.providers.platform_config_schema import PlatformConfigSchema
5
5
 
6
6
 
@@ -5,8 +5,6 @@ from importlib.metadata import PackageNotFoundError
5
5
  from importlib.metadata import version
6
6
  from pathlib import Path
7
7
 
8
- import click
9
-
10
8
  from dbt_platform_helper.constants import DEFAULT_TERRAFORM_PLATFORM_MODULES_VERSION
11
9
  from dbt_platform_helper.constants import PLATFORM_HELPER_VERSION_FILE
12
10
  from dbt_platform_helper.platform_exception import PlatformException
@@ -137,23 +135,21 @@ def get_platform_helper_versions(
137
135
 
138
136
 
139
137
  # Validates the returned PlatformHelperVersionStatus and echos useful warnings
140
- # Should use IO provider
141
138
  # Could return ValidationMessages (warnings and errors) which are output elsewhere
142
- def _process_version_file_warnings(versions: PlatformHelperVersionStatus):
139
+ def _process_version_file_warnings(versions: PlatformHelperVersionStatus, io=ClickIOProvider()):
143
140
  messages = versions.warn()
144
141
 
145
142
  if messages.get("errors"):
146
- click.secho("\n".join(messages["errors"]), fg="red")
143
+ io.error("\n".join(messages["errors"]))
147
144
 
148
145
  if messages.get("warnings"):
149
- click.secho("\n".join(messages["warnings"]), fg="yellow")
146
+ io.warn("\n".join(messages["warnings"]))
150
147
 
151
148
 
152
149
  # TODO called at the beginning of every command. This is platform-version base functionality
153
- def check_platform_helper_version_needs_update():
150
+ def check_platform_helper_version_needs_update(io=ClickIOProvider()):
154
151
  if not running_as_installed_package() or "PLATFORM_TOOLS_SKIP_VERSION_CHECK" in os.environ:
155
152
  return
156
-
157
153
  versions = get_platform_helper_versions(include_project_versions=False)
158
154
  local_version = versions.local
159
155
  latest_release = versions.latest
@@ -165,9 +161,9 @@ def check_platform_helper_version_needs_update():
165
161
  try:
166
162
  local_version.validate_compatibility_with(latest_release)
167
163
  except IncompatibleMajorVersionException:
168
- click.secho(message, fg="red")
164
+ io.error(message)
169
165
  except IncompatibleMinorVersionException:
170
- click.secho(message, fg="yellow")
166
+ io.warn(message)
171
167
 
172
168
 
173
169
  # TODO can stay as utility for now
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dbt-platform-helper
3
- Version: 13.0.2
3
+ Version: 13.1.1
4
4
  Summary: Set of tools to help transfer applications/services from GOV.UK PaaS to DBT PaaS augmenting AWS Copilot.
5
5
  License: MIT
6
6
  Author: Department for Business and Trade Platform Team
@@ -7,12 +7,12 @@ dbt_platform_helper/commands/application.py,sha256=eVwCaYuwBlk0zx0xfA6fW7b-S1pl8
7
7
  dbt_platform_helper/commands/codebase.py,sha256=y2d2flGXv44KPv0Rj18gVrDG5t862OEzIoQiOK0STqw,2375
8
8
  dbt_platform_helper/commands/conduit.py,sha256=QYMOYyCxFPzj_NJaXs3flIL7sHjOv75uAqPpjgh-EPo,2320
9
9
  dbt_platform_helper/commands/config.py,sha256=YdwcR6u3qLM3afeZAAcKr8cqTzIgD7-rT0WdE9g2F0c,11548
10
- dbt_platform_helper/commands/copilot.py,sha256=1CTyAkTQBF_i6zkqYzOIUo5wq9UYWfj-G1W8D2oRjmE,13623
10
+ dbt_platform_helper/commands/copilot.py,sha256=crnJeL4IcI2ApU7YWG6hBZ1CGjuQD6jBrr0fATJqSrI,13626
11
11
  dbt_platform_helper/commands/database.py,sha256=aG3zcMHL5PE96b7LSAu0FGCbgcycQej3AGRcd-bpXUo,4115
12
- dbt_platform_helper/commands/environment.py,sha256=WUf5A6MwXAF7qTvW5phX2bH8C07GUs8fDPZs0cQvEg0,3909
12
+ dbt_platform_helper/commands/environment.py,sha256=KzXe4ai9aD-Go4eN2k5K8ZKY48dKVeE7mp84_grpua0,3912
13
13
  dbt_platform_helper/commands/generate.py,sha256=gModp-iOR528t631GYCYx4CXXvpcPco1MzIFIB9eQxA,717
14
14
  dbt_platform_helper/commands/notify.py,sha256=lCS_JotQeg4NEpF4x145TCoZs0Pnf_LYf0rB1Iz_Tw0,3884
15
- dbt_platform_helper/commands/pipeline.py,sha256=IdiJJJxZY47qI8ooyNNLlQo0gjQGrHebGbT-aIBoKBs,3000
15
+ dbt_platform_helper/commands/pipeline.py,sha256=g7aWzvU6Z_l7N42n12ls9yAz8VqHLENPWFI-zo-J1-w,3003
16
16
  dbt_platform_helper/commands/secrets.py,sha256=QjF9xUChioIr_P0fzqwyEcqLvcN-RNZmNFFlaUPVU9o,3994
17
17
  dbt_platform_helper/commands/version.py,sha256=P030Z6lcsXxqlMt3ZijyAgfrKD4wq9xKTyFWolqiNJQ,1357
18
18
  dbt_platform_helper/constants.py,sha256=DpHGG54lwjw3XGp2TKCEGNmzaz083lAWMGkEabujDrw,1050
@@ -20,11 +20,10 @@ dbt_platform_helper/default-extensions.yml,sha256=SU1ZitskbuEBpvE7efc3s56eAUF11j
20
20
  dbt_platform_helper/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  dbt_platform_helper/domain/codebase.py,sha256=bLlTRqYmIz8J7W4siQczIJIt4Lc5-bjy-Qo46EyovFw,10496
22
22
  dbt_platform_helper/domain/conduit.py,sha256=5C5GnF5jssJ1rFFCY6qaKgvLjYUkyytRJE4tHlanYa0,4370
23
- dbt_platform_helper/domain/config_validator.py,sha256=of2iD4JX69Ekvs1CbAHU-KHsg9aVUgyB5uHkeYsGGlQ,10722
24
- dbt_platform_helper/domain/copilot_environment.py,sha256=h63FKD5eo2ACHkKxuQMdc__bgPZ6Bx7iOlVzwXeZ2o4,8937
25
- dbt_platform_helper/domain/database_copy.py,sha256=XMabpXdk8aEVSupUXkb3WzIjMfWCzms4h7Jchm__CrA,9482
23
+ dbt_platform_helper/domain/copilot_environment.py,sha256=m6FBduekUR5XLIXcqW26lXif9jF4168f03UxCABaKbI,8947
24
+ dbt_platform_helper/domain/database_copy.py,sha256=CKvI9LsHyowg0bPT9jImk07w4TyQLPoInQoU2TUDiJQ,9485
26
25
  dbt_platform_helper/domain/maintenance_page.py,sha256=aV1Fv3APyBakIxpMExeWwB6kk33HFc0tJyjeyRalkOA,20349
27
- dbt_platform_helper/domain/pipelines.py,sha256=ey1tXNcfkkWJ88xRZewWF9iZvy1_hWxhrZdk83D-6k8,5649
26
+ dbt_platform_helper/domain/pipelines.py,sha256=d5QF9iayFPEeqLuo6ztiGoAN_gLaMV91ps9JoGiAAUI,6498
28
27
  dbt_platform_helper/domain/terraform_environment.py,sha256=pyUWIxvMESbyp4yAq715JXKKHW133tr1vwxi2cMK5MI,1754
29
28
  dbt_platform_helper/jinja2_tags.py,sha256=hKG6RS3zlxJHQ-Op9r2U2-MhWp4s3lZir4Ihe24ApJ0,540
30
29
  dbt_platform_helper/platform_exception.py,sha256=bheZV9lqGvrCVTNT92349dVntNDEDWTEwciZgC83WzE,187
@@ -32,7 +31,8 @@ dbt_platform_helper/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
32
31
  dbt_platform_helper/providers/aws.py,sha256=mlorH0fni6m8aUpm1x2jQPhaI3T0QsDMWpoGiSURBcI,1387
33
32
  dbt_platform_helper/providers/cache.py,sha256=GIFVdpfXVnVgf2POQvBvZDP6pvYeUFjEuAdAQLbhJXs,2563
34
33
  dbt_platform_helper/providers/cloudformation.py,sha256=SvCZgEVqxdpKfQMRAG3KzFQ43YeOEDqMm2tKmFGtacY,5347
35
- dbt_platform_helper/providers/config.py,sha256=J83Iklq7M32_8666qr68phDbb_grc7TkyaKMPlCvhXg,4139
34
+ dbt_platform_helper/providers/config.py,sha256=nGpL2_-ko94Dd4YM5vDEpME_8IGEhWpFcLQqKkb_h8E,4145
35
+ dbt_platform_helper/providers/config_validator.py,sha256=of2iD4JX69Ekvs1CbAHU-KHsg9aVUgyB5uHkeYsGGlQ,10722
36
36
  dbt_platform_helper/providers/copilot.py,sha256=nBbt-PoGXVkmb9njJti6Et8dq1W9GytW3jGBydNNYYU,5317
37
37
  dbt_platform_helper/providers/ecr.py,sha256=lmLKGR5OQT8EyGsX-9M7oO0DHIyoMqgchBAVQBeoBZs,639
38
38
  dbt_platform_helper/providers/ecs.py,sha256=XlQHYhZiLGrqR-1ZWMagGH2R2Hy7mCP6676eZL3YbNQ,3842
@@ -40,11 +40,11 @@ dbt_platform_helper/providers/files.py,sha256=cJdOV6Eupi-COmGUMxZMF10BZnMi3MCCip
40
40
  dbt_platform_helper/providers/io.py,sha256=JkWNIMZ_lcYQ6XvdVAuwtTZjoFIPJ-84zbH09nWLMdk,816
41
41
  dbt_platform_helper/providers/load_balancers.py,sha256=Q2h4UT4KVA9E7q55Q4HGKxLlvMtpOXdR-KWQJSqTfm0,2746
42
42
  dbt_platform_helper/providers/opensearch.py,sha256=tp64jTzHlutleqMpi2h_ZKH1iakZPJnUODebX6i2mfA,1335
43
- dbt_platform_helper/providers/platform_config_schema.py,sha256=UKF3w9JGwWb8ZpkYHsglpabCTRtbx2gX-vs9gvfOyCg,26586
43
+ dbt_platform_helper/providers/platform_config_schema.py,sha256=1PjqzdOnhSncyX3BPpewl0be9xOBauCfnLLHOW40f2c,26972
44
44
  dbt_platform_helper/providers/redis.py,sha256=aj8pitxG9IKrMkL3fIYayQhcHPPzApdaXq0Uq_0yblg,1217
45
45
  dbt_platform_helper/providers/secrets.py,sha256=6cYIR15dLdHmqxtWQpM6R71e0_Xgsg9V291HBG-0LV0,5272
46
46
  dbt_platform_helper/providers/semantic_version.py,sha256=r6EWSzzCHswblzKo4_QyBR4rrR_CUo95NF6eialoiIQ,4395
47
- dbt_platform_helper/providers/terraform_manifest.py,sha256=jQo5WSST1Ce13DC_h13P0wT9FfeeQV8gfAEDdZQ8z2U,9167
47
+ dbt_platform_helper/providers/terraform_manifest.py,sha256=hrCjkuQIV0Ymt5MPLkh-BfXHtuAScXhWwNkVEp9K5Jg,9354
48
48
  dbt_platform_helper/providers/validation.py,sha256=i2g-Mrd4hy_fGIfGa6ZQy4vTJ40OM44Fe_XpEifGWxs,126
49
49
  dbt_platform_helper/providers/version.py,sha256=BvQo5dKHlaUVNgXagnYUtbATafkxtvpz2wfDVsNfyno,1335
50
50
  dbt_platform_helper/providers/vpc.py,sha256=EIjjD71K1Ry3V1jyaAkAjZwlwu_FSTn-AS7kiJFiipA,2953
@@ -68,7 +68,7 @@ dbt_platform_helper/templates/create-codebuild-role.json,sha256=THJgIKi8rWwDzhg5
68
68
  dbt_platform_helper/templates/custom-codebuild-role-policy.json,sha256=8xyCofilPhV1Yjt3OnQLcI2kZ35mk2c07GcqYrKxuoI,1180
69
69
  dbt_platform_helper/templates/env/manifest.yml,sha256=VCEj_y3jdfnPYi6gmyrwiEqzHYjpaJDANbvswmkiLA0,802
70
70
  dbt_platform_helper/templates/env/terraform-overrides/cfn.patches.yml,sha256=cFlg69fvi9kzpz13ZAeY1asseZ6TuUex-6s76jG3oL4,259
71
- dbt_platform_helper/templates/environment-pipelines/main.tf,sha256=alycy6gYWvtOEVQPH5JxtHS7iGv0FTU-RQgBTe0kdts,1953
71
+ dbt_platform_helper/templates/environment-pipelines/main.tf,sha256=qElclUHb0pv-N7yDuIWxryz3jpjoArMn8cuN2_V63xw,1944
72
72
  dbt_platform_helper/templates/svc/maintenance_pages/default.html,sha256=OTZ-qwwSXu7PFbsgp4kppdm1lsg_iHK7FCFqhPnvrEs,741
73
73
  dbt_platform_helper/templates/svc/maintenance_pages/dmas-migration.html,sha256=qvI6tHuI0UQbMBCuvPgK1a_zLANB6w7KVo9N5d8r-i0,829
74
74
  dbt_platform_helper/templates/svc/maintenance_pages/migration.html,sha256=GiQsOiuaMFb7jG5_wU3V7BMcByHBl9fOBgrNf8quYlw,783
@@ -86,11 +86,11 @@ dbt_platform_helper/utils/git.py,sha256=7JGZMaI8-cU6-GjXIXjOlsYfKu_RppLOGyAicBd4
86
86
  dbt_platform_helper/utils/manifests.py,sha256=ji3UYHCxq9tTpkm4MlRa2y0-JOYYqq1pWZ2h_zpj0UU,507
87
87
  dbt_platform_helper/utils/messages.py,sha256=nWA7BWLb7ND0WH5TejDN4OQUJSKYBxU4tyCzteCrfT0,142
88
88
  dbt_platform_helper/utils/template.py,sha256=g-Db-0I6a6diOHkgK1nYA0IxJSO4TRrjqOvlyeOR32o,950
89
- dbt_platform_helper/utils/validation.py,sha256=lmWVqRweswj-h7TPYP8lvluq8Qeu0htyKFbz2WUkPxI,1185
90
- dbt_platform_helper/utils/versioning.py,sha256=LRjtKQCGKyAsjBmLZ5P94bTURzc_LKyklb8Sne4UOIo,9114
89
+ dbt_platform_helper/utils/validation.py,sha256=coN7WsKW_nPGW9EU23AInBkAuvUl1NfQvc2bjVtgs14,1188
90
+ dbt_platform_helper/utils/versioning.py,sha256=QCvDUizLNNYbt3iLRqcWxgOP_PMfLIZARUZ5dW542fI,9056
91
91
  platform_helper.py,sha256=lUGBsVgsGGJSDXxRvtvZCo2ybRAWuJXosbzfTzkIxU8,1892
92
- dbt_platform_helper-13.0.2.dist-info/LICENSE,sha256=dP79lN73--7LMApnankTGLqDbImXg8iYFqWgnExGkGk,1090
93
- dbt_platform_helper-13.0.2.dist-info/METADATA,sha256=aQcgYyHwmEGmPgtVsakevRRd7Pb0R2XR2lI-wgKDDXA,3212
94
- dbt_platform_helper-13.0.2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
95
- dbt_platform_helper-13.0.2.dist-info/entry_points.txt,sha256=QhbY8F434A-onsg0-FsdMd2U6HKh6Q7yCFFZrGUh5-M,67
96
- dbt_platform_helper-13.0.2.dist-info/RECORD,,
92
+ dbt_platform_helper-13.1.1.dist-info/LICENSE,sha256=dP79lN73--7LMApnankTGLqDbImXg8iYFqWgnExGkGk,1090
93
+ dbt_platform_helper-13.1.1.dist-info/METADATA,sha256=17x8uon-oYWGHhcKaF1uP3LGj2OezHv573H1Rhfyc24,3212
94
+ dbt_platform_helper-13.1.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
95
+ dbt_platform_helper-13.1.1.dist-info/entry_points.txt,sha256=QhbY8F434A-onsg0-FsdMd2U6HKh6Q7yCFFZrGUh5-M,67
96
+ dbt_platform_helper-13.1.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.0.1
2
+ Generator: poetry-core 2.1.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any