-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix/version #36
base: master
Are you sure you want to change the base?
Fix/version #36
Conversation
main.tf
Outdated
category_group = "AllLogs" | ||
enabled = true | ||
enabled_log { | ||
category = "FirewallNetworkRule" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this hardcoded?
main.tf
Outdated
|
||
log { | ||
enabled_log { | ||
category = "FirewallApplicationRule" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this hard coded?
main.tf
Outdated
days = var.days | ||
} | ||
enabled_log { | ||
category = "FirewallThreatIntel" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this hardcoded. ?
name = local.name | ||
environment = local.environment | ||
label_order = ["name", "environment"] | ||
create_log_analytics_workspace = true | ||
log_analytics_workspace_sku = "PerGB2018" | ||
resource_group_name = module.resource_group.resource_group_name | ||
log_analytics_workspace_location = module.resource_group.resource_group_location | ||
log_analytics_workspace_id = module.log-analytics.workspace_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you passing "log-analytics" id and same module. Plesae explain .
main.tf
Outdated
} | ||
} | ||
|
||
dynamic "ip_configuration" { | ||
for_each = toset(var.additional_public_ips) | ||
|
||
content { | ||
name = lookup(ip_configuration.value, "name") | ||
public_ip_address_id = lookup(ip_configuration.value, "public_ip_address_id") | ||
name = lookup(ip_configuration.value, "name", null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@13archit check here please why he is adding null value for default case .
examples/complete/example.tf
Outdated
#subnet | ||
specific_name_subnet = true | ||
specific_subnet_names = "AzureFirewallSubnet" | ||
specific_subnet_names = ["AzureFirewallSubnet"] # Corrected to be a list of strings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comments please.
what
why
Update version for removinge block errors and deprecations
addad versions.tf for define azurerm version
references