Skip to content

Commit

Permalink
chore(main): Release transformation-aws-encryption v2.0.0 (#465)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan Sarig <[email protected]>
  • Loading branch information
cq-bot and john-s58 authored Jan 17, 2024
1 parent 3287c40 commit 4d87ae7
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"visualizations/aws/compliance+FILLER": "0.0.0",
"visualizations/aws/data_resilience": "1.1.0",
"visualizations/aws/data_resilience+FILLER": "0.0.0",
"transformations/aws/encryption": "1.1.0",
"transformations/aws/encryption": "2.0.0",
"transformations/aws/encryption+FILLER": "0.0.0",
"transformations/aws/asset-inventory-free": "2.0.0",
"transformations/aws/asset-inventory+FILLER": "0.0.0",
Expand Down
16 changes: 16 additions & 0 deletions transformations/aws/encryption/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [2.0.0](https://github.com/cloudquery/policies-premium/compare/transformation-aws-encryption-v1.1.0...transformation-aws-encryption-v2.0.0) (2024-01-17)


### ⚠ BREAKING CHANGES

* Update `aws` to `v23.3.1` ([#264](https://github.com/cloudquery/policies-premium/issues/264))

### Features

* Update `aws` to `v23.3.1` ([#264](https://github.com/cloudquery/policies-premium/issues/264)) ([d361f9b](https://github.com/cloudquery/policies-premium/commit/d361f9bad529167e093c0eca56fc9923adc72fca))


### Bug Fixes

* **deps:** Update dependency dbt-postgres to v1.7.4 ([#473](https://github.com/cloudquery/policies-premium/issues/473)) ([a7f759a](https://github.com/cloudquery/policies-premium/commit/a7f759aaf50a0a9e308fd6be378811a0097925c2))

## [1.1.0](https://github.com/cloudquery/policies-premium/compare/transformation-aws-encryption-v1.0.1...transformation-aws-encryption-v1.1.0) (2023-12-07)


Expand Down
57 changes: 20 additions & 37 deletions transformations/aws/encryption/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,24 @@

# Name your project! Project names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
name: 'aws_encryption'
version: '1.0.0'
name: aws_encryption
version: 2.0.0
config-version: 2

# This setting configures which "profile" dbt uses for this project.
profile: 'aws_encryption'

# These configurations specify where dbt should look for different types of files.
# The `model-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
model-paths: ["models", "../models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["../macros", "../../macros"]
snapshot-paths: ["snapshots"]

clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"

# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models

# In this example config, we tell dbt to build all models in the example/
# directory as views. These settings can be overridden in the individual model
# files using the `{{ config(...) }}` macro.
profile: aws_encryption
model-paths:
- models
- ../models
analysis-paths:
- analyses
test-paths:
- tests
seed-paths:
- seeds
macro-paths:
- ../macros
- ../../macros
snapshot-paths:
- snapshots
clean-targets:
- target
- dbt_packages
models:
aws_encryption:
aws_encryption__encrypted_resources:
Expand All @@ -39,10 +29,3 @@ models:
+enabled: true
aws_encryption__keys_by_account:
+enabled: true
# Config indicated by + and applies to all files under models/example/
# example:
# +materialized: view




0 comments on commit 4d87ae7

Please sign in to comment.