Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fc666d1
feat(connectivity): Add option to set allow_non_virtual_wan_traffic i…
Slapper Apr 5, 2024
1ac8cb8
updates to resolve issue #794 (#919)
ATuckwell Apr 11, 2024
9bad16c
docs: update docs for threat_intelligence_allowlist (#928)
jaredfholgate Apr 17, 2024
884b0c7
Update wiki-sync.yml
jaredfholgate Apr 17, 2024
1a4fd0c
chore(deps): bump github/super-linter from 5 to 6 (#931)
dependabot[bot] Apr 30, 2024
8fbb43c
add link to Upgrade guide from v4.2.0 to v5.0.0 (#934)
T0biii May 9, 2024
f7e8114
Added hub_routing_preference to connectivity advanced configuration (…
May 10, 2024
d678f4c
Policy sync updates (#959)
jaredfholgate Jun 4, 2024
32cb5b5
Update Library Templates (automated) (#966)
cae-pr-creator[bot] Jun 4, 2024
ad133d4
Add remote branch option (#970)
jaredfholgate Jun 5, 2024
3d21cd3
Update Library Templates (automated) (#973)
cae-pr-creator[bot] Jun 5, 2024
568de05
Update Library Templates (automated) (#976)
cae-pr-creator[bot] Jun 6, 2024
9a985bb
Remove redundant assignment file (#977)
jaredfholgate Jun 6, 2024
36df277
updating threat intelligence allowlist dynamic block (#953)
Daan222 Jun 6, 2024
0783a8a
chore(deps): bump azure/powershell from 1 to 2 (#917)
dependabot[bot] Jun 6, 2024
b069eb1
Add OpenSFF Scorecard (#987)
jaredfholgate Jun 11, 2024
acd9291
chore(deps): bump github/codeql-action from 3.24.9 to 3.25.8 (#990)
dependabot[bot] Jun 11, 2024
35447cd
chore(deps): bump github.com/hashicorp/go-getter from 1.7.3 to 1.7.4 …
dependabot[bot] Jun 11, 2024
4d983f7
feat!: ama (#968)
matt-FFFFFF Jun 17, 2024
4b8219b
Fix example uami issue (#1000)
jaredfholgate Jun 17, 2024
73206bb
Update Library Templates (automated) (#1001)
cae-pr-creator[bot] Jun 18, 2024
9d6f72b
docs: additional v6 upgrade detail (#1002)
matt-FFFFFF Jun 18, 2024
7356e5c
Update Library Templates (automated) (#1006)
cae-pr-creator[bot] Jun 20, 2024
35927bb
docs: update docs with FAQ on roadmap and banner for upcoming breakin…
matt-FFFFFF Jun 25, 2024
508a9ab
naming fixed in module
dverma-cd Jun 28, 2024
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
Prev Previous commit
Next Next commit
updating threat intelligence allowlist dynamic block (Azure#953)
Co-authored-by: Matt White <[email protected]>
  • Loading branch information
Daan222 and matt-FFFFFF authored Jun 6, 2024
commit 36df2775500d8942b45b5dc49ea89dcfaff1037e
4 changes: 3 additions & 1 deletion resources.connectivity.tf
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,9 @@ resource "azurerm_firewall_policy" "connectivity" {
}

dynamic "threat_intelligence_allowlist" {
for_each = each.value.template.threat_intelligence_allowlist
# Ensure that the dynamic block is created only if the allowlist is defined
for_each = length(keys(each.value.template.threat_intelligence_allowlist)) > 0 ? [each.value.template.threat_intelligence_allowlist] : []

content {
# Optional attributes
fqdns = lookup(threat_intelligence_allowlist.value, "fqdns", null)
Expand Down