Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 1.33 KB

File metadata and controls

25 lines (15 loc) · 1.33 KB

A feature to implement FW rules for a given vpc in a given project.

Requirements

Please note that state file for npe project has been synchronized as well as the input for this feature

Providers

No provider.

Inputs

Name Description Type Default Required
firewall_rules VPC firewall rules inputs
list(object({
name = string
description = string
direction = string
priority = number
ranges = list(string)
source_tags = list(string)
source_service_accounts = list(string)
target_tags = list(string)
target_service_accounts = list(string)
allow = list(object({
protocol = string
ports = list(string)
}))
deny = list(object({
protocol = string
ports = list(string)
}))
log_config = object({
metadata = string
})
}))
n/a yes
project_id Project id that has the target vpc string n/a yes
vpc_name Target vpc where the fw rules will be applied string n/a yes

Outputs

Name Description
firewall_rules The created firewall rule resources