Skip to content

Commit

Permalink
Merge pull request #1315 from maggie44/delete-lock
Browse files Browse the repository at this point in the history
Add resource delete protection variables to kube.tf.example
  • Loading branch information
mysticaltech committed Apr 12, 2024
2 parents 5058926 + 0ec4744 commit 5583100
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kube.tf.example
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,14 @@ module "kube-hetzner" {
# "--enforce-node-group-min-size=true",
# ]

# Enable delete protection on compatible resources to prevent accidental deletion from the Hetzner Cloud Console.
# This does not protect deletion from Terraform itself.
# enable_delete_protection = {
# floating_ip = true
# load_balancer = true
# volume = true
# }

# Enable etcd snapshot backups to S3 storage.
# Just provide a map with the needed settings (according to your S3 storage provider) and backups to S3 will
# be enabled (with the default settings for etcd snapshots).
Expand Down Expand Up @@ -503,7 +511,6 @@ module "kube-hetzner" {
# Example:
# traefik_additional_ports = [{name = "example", port = 1234, exposedPort = 1234}]


# If you want to configure additional trusted IPs for traefik, enter them here as a list of IPs (strings).
# Example for Cloudflare:
# traefik_additional_trusted_ips = [
Expand Down

0 comments on commit 5583100

Please sign in to comment.