panos_general_settings
This resource allows you to update the general device settings, such as DNS or the hostname.
All params are optional for this resource. If any options are not specified, then whatever is already configured on the firewall is left as-is. The general device settings will always exist on the firewall, so terraform
destroy
does not remove config from the firewall.
Example Usage
resource "panos_general_settings" "example" { hostname = "ngfw220" dns_primary = "10.5.1.10" ntp_primary = "10.5.1.10" ntp_primary_auth_type = "none" }
Argument Reference
The following arguments are supported:
-
hostname
- Firewall hostname. -
timezone
- The timezone (e.g. -US/Pacific
). -
domain
- The domain. -
update_server
- The update server (Default:updates.paloaltonetworks.com
). -
verify_update_server
- Verify update server identity (Default:true
). -
dns_primary
- Primary DNS server. -
dns_secondary
- Secondary DNS server. -
ntp_primary_address
- Primary NTP server. -
ntp_primary_auth_type
- Primary NTP auth type. This can benone
,autokey
, orsymmetric-key
. -
ntp_primary_key_id
- Primary NTPsymmetric-key
key ID. -
ntp_primary_algorithm
- Primary NTPsymmetric-key
algorithm. This can besha1
ormd5
. -
ntp_primary_auth_key
- Primary NTPsymmetric-key
auth key. This is the SHA1 hash if the algorithm issha1
, or the md5sum if the algorithm ismd5
. -
ntp_secondary_address
- Secondary NTP server. -
ntp_secondary_auth_type
- Secondary NTP auth type. This can benone
,autokey
, orsymmetric-key
. -
ntp_secondary_key_id
- Secondary NTPsymmetric-key
key ID. -
ntp_secondary_algorithm
- Secondary NTPsymmetric-key
algorithm. This can besha1
ormd5
. -
ntp_secondary_auth_key
- Secondary NTPsymmetric-key
auth key. This is the SHA1 hash if the algorithm issha1
, or the md5sum if the algorithm ismd5
.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/panos/r/general_settings.html