mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 02:31:10 +00:00
fix(firewall): fw controls bugfixes - fix alias examples in docs - docs & examples improvements - add support for security group insertion Release-As: 0.17.0-rc2
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
package validator
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
|
|
)
|
|
|
|
var (
|
|
rateExpression = regexp.MustCompile(`[1-9][0-9]*/(second|minute|hour|day)`)
|
|
ifaceExpression = regexp.MustCompile(`net\d+`)
|
|
)
|
|
|
|
func FirewallRate() schema.SchemaValidateDiagFunc {
|
|
return validation.ToDiagFunc(validation.StringMatch(
|
|
rateExpression,
|
|
"Must be a valid rate expression, e.g. '1/second'",
|
|
))
|
|
}
|
|
func FirewallIFace() schema.SchemaValidateDiagFunc {
|
|
return validation.ToDiagFunc(validation.StringMatch(
|
|
ifaceExpression,
|
|
"Must be a valid VM/Container iface key, e.g. 'net0'",
|
|
))
|
|
}
|
|
|
|
func FirewallPolicy() schema.SchemaValidateDiagFunc {
|
|
return validation.ToDiagFunc(validation.StringInSlice(
|
|
[]string{"ACCEPT", "REJECT", "DROP"},
|
|
false,
|
|
))
|
|
}
|
|
|
|
func FirewallLogLevel() schema.SchemaValidateDiagFunc {
|
|
return validation.ToDiagFunc(validation.StringInSlice(
|
|
[]string{"emerg", "alert", "crit", "err", "warning", "notice", "info", "debug", "nolog"},
|
|
false,
|
|
))
|
|
}
|