tweaked tfvars.example

This commit is contained in:
Karim Naufal 2022-02-27 23:30:56 +01:00
parent 4fe79625b1
commit c0c27229f4

View File

@ -54,13 +54,13 @@ agent_nodepools = {
# Adding extra firewall rules, like opening a port # Adding extra firewall rules, like opening a port
# In this example with allow port TCP 5432 for a Postgres service we will open via a nodeport # In this example with allow port TCP 5432 for a Postgres service we will open via a nodeport
# More info on the format here https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs/resources/firewall # More info on the format here https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs/resources/firewall
extra_firewall_rules = [ # extra_firewall_rules = [
{ # {
direction = "in" # direction = "in"
protocol = "tcp" # protocol = "tcp"
port = "5432" # port = "5432"
source_ips = [ # source_ips = [
"0.0.0.0/0" # "0.0.0.0/0"
] # ]
}, # },
] # ]