» panos_ipsec_crypto_profile
This resource allows you to add/update/delete IPSec crypto profiles.
» Import Name
<name>
» Example Usage
resource "panos_ipsec_crypto_profile" "example" {
name = "example"
authentications = ["md5", "sha384"]
encryptions = ["des", "aes-128-cbc"]
dh_group = "group14"
lifetime_type = "hours"
lifetime_value = 4
lifesize_type = "mb"
lifesize_value = 1
}
» Argument Reference
The following arguments are supported:
-
name- (Required) The object's name -
protocol- (Optional) The protocol. Valid values areesp(the default) orah -
authentications- (Required, list) - List of authentication types. -
encryptions- (Required, list) - List of encryption types. Valid values aredes,3des,aes-128-cbc,aes-192-cbc,aes-256-cbc,aes-128-gcm,aes-256-gcm, andnull. Note that the "gcm" values are only available in PAN-OS 7.0+. -
dh_group- (Optional) The DH group value. Valid values should start with the stringgroup. -
lifetime_type- (Optional) The lifetime type. Valid values areseconds,minutes,hours(the default), ordays. -
lifetime_value- (Optional, int) The lifetime value. -
lifesize_type- (Optional) The lifesize type. Valid values arekb,mb,gb, ortb. -
lifesize_value- (Optional, int) the lifesize value.