Skip to content

Commit

Permalink
[azure][feat] Collect certificates from sub resources (#2225)
Browse files Browse the repository at this point in the history
  • Loading branch information
1101-1 authored Oct 11, 2024
1 parent 1980175 commit b37bc55
Show file tree
Hide file tree
Showing 4 changed files with 174 additions and 69 deletions.
2 changes: 2 additions & 0 deletions plugins/azure/fix_plugin_azure/resource/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,11 @@ class AzureResourceGroup(MicrosoftResource, BaseGroup):
"tags": S("tags", default={}),
"name": S("name"),
"managed_by": S("managedBy"),
"location": S("location"),
"provisioning_state": S("properties", "provisioningState"),
}
managed_by: Optional[str] = field(default=None, metadata={'description': 'The id of the resource that manages this resource group.'}) # fmt: skip
location: Optional[str] = field(default=None, metadata={'description': 'The resource location.'}) # fmt: skip
_resource_ids_in_group: Optional[List[str]] = None

def post_process(self, graph_builder: GraphBuilder, source: Json) -> None:
Expand Down
Loading

0 comments on commit b37bc55

Please sign in to comment.