Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cloudquery/cq-provider-azure
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.12.2
Choose a base ref
...
head repository: cloudquery/cq-provider-azure
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.3
Choose a head ref
  • 14 commits
  • 34 files changed
  • 4 contributors

Commits on Jul 29, 2022

  1. fix(tests): Remove terraform for Azure ExpressRoute port (#440)

    * fix(tests): remove terraform for Azure ExpressRoute port
    
    This was costing ~k per month, and the terraform resource doesn't allow us to use the lowest bandwidth setting of 50mbps, since it has to be specified in whole-number gbps
    
    * ignore in tests
    hermanschaaf authored Jul 29, 2022
    Configuration menu
    Copy the full SHA
    7413740 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. fix(deps): Update module github.com/Azure/go-autorest/autorest to v0.…

    …11.28 (#443)
    
    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/Azure/go-autorest/autorest](https://togithub.com/Azure/go-autorest) | require | patch | `v0.11.27` -> `v0.11.28` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>Azure/go-autorest</summary>
    
    ### [`v0.11.28`](https://togithub.com/Azure/go-autorest/releases/tag/autorest%2Fv0.11.28)
    
    [Compare Source](https://togithub.com/Azure/go-autorest/compare/autorest/v0.11.27...autorest/v0.11.28)
    
    Update crypto dependency to latest version [#&#8203;708](https://togithub.com/Azure/go-autorest/issues/708)
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjEzMy4wIn0=-->
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    bc87594 View commit details
    Browse the repository at this point in the history
  2. fix(deps): Update module github.com/hashicorp/go-hclog to v1.2.2 (#444)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/hashicorp/go-hclog](https://togithub.com/hashicorp/go-hclog) | require | patch | `v1.2.1` -> `v1.2.2` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>hashicorp/go-hclog</summary>
    
    ### [`v1.2.2`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.2.2)
    
    [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.2.1...v1.2.2)
    
    #### What's Changed
    
    -   fix various typos in comments by [@&#8203;marco-m](https://togithub.com/marco-m) in [https://github.com/hashicorp/go-hclog/pull/115](https://togithub.com/hashicorp/go-hclog/pull/115)
    -   Omit empty colon when message is empty. Fixes [#&#8203;109](https://togithub.com/hashicorp/go-hclog/issues/109) by [@&#8203;evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/116](https://togithub.com/hashicorp/go-hclog/pull/116)
    
    **Full Changelog**: hashicorp/go-hclog@v1.2.1...v1.2.2
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjEzMy4wIn0=-->
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    6c769c9 View commit details
    Browse the repository at this point in the history
  3. chore: Synced file(s) with cloudquery/.github (#445)

    Co-authored-by: cq-bot <null>
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    c25f9b0 View commit details
    Browse the repository at this point in the history
  4. feat: Add support for Tenants (#412)

    As requested in #406, this adds support for listing tenants under a subscription. 
    
    It can be used by adding `subscriptions.tenant` to the cloudquery config, which will then populate a table named `azure_subscription_tenants`.
    
    To add this, we had to start using the new `armsubscriptions` Azure SDK, which requires Go 1.18 and uses generics. The implementation for the subscriptions client has been switched to use this now. The benefit of this is that we also get new columns and relations on the `accounts` and `subscriptions` tables. 
    
    Tables updated in this PR:
     - `azure_account_location_paired_region` (new)
     - `azure_account_locations` (new columns)
     - `azure_subscription_subscriptions` (new columns, notably `tenant_id` and `managed_by_tenants`)
     - `azure_subscription_tenants` (new)
    
    Closes #406
    hermanschaaf authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    940af7f View commit details
    Browse the repository at this point in the history
  5. chore: Synced file(s) with cloudquery/.github (#447)

    Co-authored-by: cq-bot <null>
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    791a4d5 View commit details
    Browse the repository at this point in the history
  6. chore: Synced file(s) with cloudquery/.github (#449)

    Synced local file(s) with [cloudquery/.github](https://github.com/cloudquery/.github).
    
    
    
    
    
    ---
    
    This PR was created automatically by the [repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) workflow run [#2774614062](https://github.com/cloudquery/.github/actions/runs/2774614062)
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    96cae68 View commit details
    Browse the repository at this point in the history
  7. chore: Fix linting issue (#452)

    Changing order type vs. const to get #450 to pass.
    disq authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    1351736 View commit details
    Browse the repository at this point in the history
  8. chore: Synced file(s) with cloudquery/.github (#450)

    Synced local file(s) with [cloudquery/.github](https://github.com/cloudquery/.github).
    
    
    
    
    
    ---
    
    This PR was created automatically by the [repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) workflow run [#2774991342](https://github.com/cloudquery/.github/actions/runs/2774991342)
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    42201dc View commit details
    Browse the repository at this point in the history
  9. fix(deps): Update module github.com/cloudquery/cq-gen to v0.0.7 (#453)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/cq-gen](https://togithub.com/cloudquery/cq-gen) | require | patch | `v0.0.6` -> `v0.0.7` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/cq-gen</summary>
    
    ### [`v0.0.7`](https://togithub.com/cloudquery/cq-gen/releases/tag/v0.0.7)
    
    [Compare Source](https://togithub.com/cloudquery/cq-gen/compare/v0.0.6...v0.0.7)
    
    #### What's Changed
    
    -   chore: Upgrade SDK to version v0.14.3 by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/114](https://togithub.com/cloudquery/cq-gen/pull/114)
    -   fix: add ignore tests to columns by [@&#8203;roneli](https://togithub.com/roneli) in [https://github.com/cloudquery/cq-gen/pull/112](https://togithub.com/cloudquery/cq-gen/pull/112)
    -   fix: Better error message when loading package fails by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/117](https://togithub.com/cloudquery/cq-gen/pull/117)
    -   fix: Make generated user-defined resolvers private by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/118](https://togithub.com/cloudquery/cq-gen/pull/118)
    -   chore: Upgrade to Go 1.18 by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/119](https://togithub.com/cloudquery/cq-gen/pull/119)
    -   feat: Use PathTableResolver for relations by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/115](https://togithub.com/cloudquery/cq-gen/pull/115)
    
    **Full Changelog**: https://github.com/cloudquery/cq-gen/compare/v0.0.6...v0.0.7
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjEzMy4wIn0=-->
    cq-bot authored Aug 1, 2022
    Configuration menu
    Copy the full SHA
    361d908 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. fix(deps): Update module github.com/cloudquery/cq-gen to v0.0.8 (#457)

    This PR contains the following updates:
    
    | Package | Type | Update | Change |
    |---|---|---|---|
    | [github.com/cloudquery/cq-gen](https://togithub.com/cloudquery/cq-gen) | require | patch | `v0.0.7` -> `v0.0.8` |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>cloudquery/cq-gen</summary>
    
    ### [`v0.0.8`](https://togithub.com/cloudquery/cq-gen/releases/tag/v0.0.8)
    
    [Compare Source](https://togithub.com/cloudquery/cq-gen/compare/v0.0.7...v0.0.8)
    
    #### What's Changed
    
    -   fix: Allow for forced generation of relation resolvers by [@&#8203;hermanschaaf](https://togithub.com/hermanschaaf) in [https://github.com/cloudquery/cq-gen/pull/122](https://togithub.com/cloudquery/cq-gen/pull/122)
    
    **Full Changelog**: https://github.com/cloudquery/cq-gen/compare/v0.0.7...v0.0.8
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
    
    🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
    
    ---
    
    This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzMuMCIsInVwZGF0ZWRJblZlciI6IjMyLjEzMy4wIn0=-->
    cq-bot authored Aug 5, 2022
    Configuration menu
    Copy the full SHA
    7d61851 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2022

  1. fix(deps): Update tubone24/update_release digest to 2146f15 (#389)

    Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
    cq-bot and renovate-bot authored Aug 7, 2022
    Configuration menu
    Copy the full SHA
    e5682fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6feb015 View commit details
    Browse the repository at this point in the history
  3. chore(main): Release v0.12.3 (#441)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [0.12.3](v0.12.2...v0.12.3) (2022-08-07)
    
    
    ### Features
    
    * Add support for Tenants ([#412](#412)) ([940af7f](940af7f))
    
    
    ### Bug Fixes
    
    * **deps:** Update module github.com/Azure/go-autorest/autorest to v0.11.28 ([#443](#443)) ([bc87594](bc87594))
    * **deps:** Update module github.com/cloudquery/cq-gen to v0.0.7 ([#453](#453)) ([361d908](361d908))
    * **deps:** Update module github.com/cloudquery/cq-gen to v0.0.8 ([#457](#457)) ([7d61851](7d61851))
    * **deps:** Update module github.com/hashicorp/go-hclog to v1.2.2 ([#444](#444)) ([6c769c9](6c769c9))
    * **deps:** Update tubone24/update_release digest to 2146f15 ([#389](#389)) ([e5682fd](e5682fd))
    * **docs:** Some minor docs fixes ([#454](#454)) ([6feb015](6feb015))
    * **tests:** Remove terraform for Azure ExpressRoute port ([#440](#440)) ([7413740](7413740))
    
    ---
    This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
    cq-bot authored Aug 7, 2022
    Configuration menu
    Copy the full SHA
    46463bb View commit details
    Browse the repository at this point in the history
Loading