Skip to content

Commit

Permalink
chore(main): Release transformation-aws-cost v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cq-bot committed Jan 18, 2024
1 parent daeeb4a commit 481fb23
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 36 deletions.
3 changes: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
"transformations/aws/asset-inventory-free": "2.0.0",
"transformations/aws/asset-inventory+FILLER": "0.0.0",
"visualizations/aws/asset_inventory": "1.0.0",
"visualizations/aws/asset_inventory+FILLER": "0.0.0"
"visualizations/aws/asset_inventory+FILLER": "0.0.0",
"transformations/aws/cost": "1.0.0"
}
24 changes: 24 additions & 0 deletions transformations/aws/cost/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## 1.0.0 (2024-01-18)


### ⚠ BREAKING CHANGES

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

### Features

* Added queries for aws cost - compute optimizer, trusted advisior ([#331](https://github.com/cloudquery/policies-premium/issues/331)) ([b225f10](https://github.com/cloudquery/policies-premium/commit/b225f105afb5a4bdf00c03a43e2762843cd3aaf2))
* Added queries for unused resources cost ([#348](https://github.com/cloudquery/policies-premium/issues/348)) ([5c27d5a](https://github.com/cloudquery/policies-premium/commit/5c27d5ad19ba3f00d1218d88e1004ef9938edd53))
* Added seed for aws cost ([#333](https://github.com/cloudquery/policies-premium/issues/333)) ([f555464](https://github.com/cloudquery/policies-premium/commit/f5554640945793711150482feb7b1e12174324d6))
* Trigger GCP Free Build Transformations ([5c68bae](https://github.com/cloudquery/policies-premium/commit/5c68bae0f30e4e57db5774300488d4b6ddd42c3b))
* Trigger GCP Free Build Transformations ([#385](https://github.com/cloudquery/policies-premium/issues/385)) ([5c68bae](https://github.com/cloudquery/policies-premium/commit/5c68bae0f30e4e57db5774300488d4b6ddd42c3b))
* 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.3 ([#313](https://github.com/cloudquery/policies-premium/issues/313)) ([caaa770](https://github.com/cloudquery/policies-premium/commit/caaa770ed3ea2b4285a2d4af851bb05f1449e9b0))
* **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))
* Update docs ([#280](https://github.com/cloudquery/policies-premium/issues/280)) ([d3ad35b](https://github.com/cloudquery/policies-premium/commit/d3ad35bc6ac54875e124632194e38b04e490bec9))
56 changes: 21 additions & 35 deletions transformations/aws/cost/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,27 @@

# 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_cost'
version: '1.0.0'
name: aws_cost
version: 1.0.0
config-version: 2

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

# 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"]
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"

profile: aws_cost
model-paths:
- models
analysis-paths:
- analyses
test-paths:
- tests
seed-paths:
- seeds
macro-paths:
- ../macros
- ../../macros
snapshot-paths:
- snapshots
clean-targets:
- target
- dbt_packages
vars:
cost_usage_table: cost_usage_table

seeds:
aws_cost: # you must include the project name
aws_cost:
cost_usage_table:
+column_types:
bill_billing_period_end_date: TIMESTAMP WITHOUT TIME ZONE
Expand Down Expand Up @@ -179,14 +173,6 @@ seeds:
product_size_flex: text
product_alarm_type: text
product_availability: text

# 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.
models:
aws_cost:
aws_cost__by_regions:
Expand All @@ -198,4 +184,4 @@ models:
aws_cost__gcp2_ebs_volumes:
+enabled: true
aws_cost__over_time:
+enabled: true
+enabled: true

0 comments on commit 481fb23

Please sign in to comment.