Skip to content

Instantly share code, notes, and snippets.

View taofeekaoyusuf's full-sized avatar

Taofeek Abiodun Olasunkanmi Yusuf taofeekaoyusuf

View GitHub Profile
@taofeekaoyusuf
taofeekaoyusuf / NSGRules.tf
Last active August 9, 2022 00:39
This snippet is an excerpt to creating multiple Network Security Group Rule
locals {
nsgrules = {
rdp = {
name = "DenyVNetInboundFromInternet"
priority = 101
direction = "Inbound"
access = "Deny"
protocol = "*"
source_port_range = "*"