-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⭐️ Add azure.subscription. Move all azure resources under azure.subsc…
…ription (#810) Introduce a new `azure.subscription` resource: ``` cnquery> azure.subscription{name state} azure.subscription: { name: "Mondoo Testing" state: "Enabled" } ``` All the resources are now moved from `azure.*` to `azure.subscription.*`. This lets us build a resource hierarchy more clearly. Before: ``` cnquery> azure.compute.vms{name} azure.compute.vms: [ 0: { name: "Security-Team-vm-linux-1-b9qa" } 1: { name: "Security-Team-vm-linux-1-mjau" } ] ``` After: ``` cnuery> azure.subscription.compute.vms{name} azure.subscription.compute.vms: [ 0: { name: "Security-Team-vm-linux-1-b9qa" } 1: { name: "Security-Team-vm-linux-1-mjau" } ] ``` There are aliases introduced to keep the old resources untouched to avoid breaking changes so `azure.compute.vms` will still work
- Loading branch information
1 parent
4ce3cbc
commit 3339aa2
Showing
23 changed files
with
7,619 additions
and
4,071 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.