Skip to content

Commit b37bc55

Browse files
authored
[azure][feat] Collect certificates from sub resources (#2225)
1 parent 1980175 commit b37bc55

4 files changed

Lines changed: 174 additions & 69 deletions

File tree

plugins/azure/fix_plugin_azure/resource/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,9 +394,11 @@ class AzureResourceGroup(MicrosoftResource, BaseGroup):
394394
"tags": S("tags", default={}),
395395
"name": S("name"),
396396
"managed_by": S("managedBy"),
397+
"location": S("location"),
397398
"provisioning_state": S("properties", "provisioningState"),
398399
}
399400
managed_by: Optional[str] = field(default=None, metadata={'description': 'The id of the resource that manages this resource group.'}) # fmt: skip
401+
location: Optional[str] = field(default=None, metadata={'description': 'The resource location.'}) # fmt: skip
400402
_resource_ids_in_group: Optional[List[str]] = None
401403

402404
def post_process(self, graph_builder: GraphBuilder, source: Json) -> None:

0 commit comments

Comments
 (0)