Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backports new azure resources into v7 #910

Merged
merged 1 commit into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ activitylog
Auths
backupconfiguration
bigquery
Brotli
cavium
cdn
certificatechains
cmek
CMKs
Expand All @@ -20,6 +22,7 @@ GOBIN
gpu
gvnic
hostkeys
iap
iex
ingresstls
loggingservice
Expand All @@ -32,6 +35,7 @@ netfirewallprofile
netfirewallrule
nodepool
Pids
postgre
preemptibility
preemptible
pushconfig
Expand All @@ -44,15 +48,12 @@ spo
sqlserver
sshkeys
sysctls
TTLs
UDF
unarchived
vdcs
vmknics
Vtpm
vulnerabilityassessmentsettings
wfascimprov
wil
Brotli
cdn
iap
TTLs
UDF
8 changes: 8 additions & 0 deletions resources/packs/azure/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ func msGraphTransport(t providers.Instance) (*microsoft_transport.Provider, erro
}
return at, nil
}

func azureTagsToInterface(data map[string]*string) map[string]interface{} {
labels := make(map[string]interface{})
for key := range data {
labels[key] = core.ToString(data[key])
}
return labels
}
481 changes: 305 additions & 176 deletions resources/packs/azure/azure.lr

Large diffs are not rendered by default.

8,379 changes: 4,926 additions & 3,453 deletions resources/packs/azure/azure.lr.go

Large diffs are not rendered by default.

Loading