|
| 1 | +--- |
| 2 | +# generated by https://github.com/hashicorp/terraform-plugin-docs |
| 3 | +page_title: "catalystcenter_authentication_policy_server Resource - terraform-provider-catalystcenter" |
| 4 | +subcategory: "System Settings" |
| 5 | +description: |- |
| 6 | + This resource can manage an Authentication Policy Server. |
| 7 | +--- |
| 8 | + |
| 9 | +# catalystcenter_authentication_policy_server (Resource) |
| 10 | + |
| 11 | +This resource can manage an Authentication Policy Server. |
| 12 | + |
| 13 | +## Example Usage |
| 14 | + |
| 15 | +```terraform |
| 16 | +resource "catalystcenter_authentication_policy_server" "example" { |
| 17 | + authentication_port = 1812 |
| 18 | + accounting_port = 1813 |
| 19 | + ip_address = "10.0.0.1" |
| 20 | + pxgrid_enabled = true |
| 21 | + use_dnac_cert_for_pxgrid = false |
| 22 | + is_ise_enabled = false |
| 23 | + port = 49 |
| 24 | + protocol = "RADIUS" |
| 25 | + retries = 2 |
| 26 | + role = "secondary" |
| 27 | + shared_secret = "Cisco123" |
| 28 | + timeout_seconds = 2 |
| 29 | +} |
| 30 | +``` |
| 31 | + |
| 32 | +<!-- schema generated by tfplugindocs --> |
| 33 | +## Schema |
| 34 | + |
| 35 | +### Required |
| 36 | + |
| 37 | +- `accounting_port` (Number) Accounting port of RADIUS server |
| 38 | + - Range: `1`-`65535` |
| 39 | +- `authentication_port` (Number) Authentication port of RADIUS server |
| 40 | + - Range: `1`-`65535` |
| 41 | +- `ip_address` (String) IP address of authentication and policy server |
| 42 | +- `port` (Number) Port of TACACS server |
| 43 | + - Range: `1`-`65535` |
| 44 | +- `protocol` (String) Type of protocol for authentication and policy server. If already saved with RADIUS, can update to RADIUS_TACACS. If already saved with TACACS, can update to RADIUS_TACACS |
| 45 | + - Choices: `TACACS`, `RADIUS`, `RADIUS_TACACS` |
| 46 | +- `retries` (Number) Number of communication retries between devices and authentication and policy server. The range is from 1 to 3 |
| 47 | + - Range: `1`-`3` |
| 48 | +- `role` (String) Role of authentication and policy server |
| 49 | + - Choices: `primary`, `secondary` |
| 50 | +- `shared_secret` (String) Shared secret between devices and authentication and policy server |
| 51 | +- `timeout_seconds` (Number) Number of seconds before timing out between devices and authentication and policy server. The range is from 2 to 20 |
| 52 | + - Range: `2`-`20` |
| 53 | + |
| 54 | +### Optional |
| 55 | + |
| 56 | +- `cisco_ise_dtos` (Attributes List) Cisco ISE Server DTOs (see [below for nested schema](#nestedatt--cisco_ise_dtos)) |
| 57 | +- `encryption_key` (String) Encryption key used to encrypt shared secret |
| 58 | +- `encryption_scheme` (String) Type of encryption scheme for additional security |
| 59 | + - Choices: `KEYWRAP`, `RADSEC` |
| 60 | +- `external_cisco_ise_ip_addr_dtos` (Attributes List) For future use (see [below for nested schema](#nestedatt--external_cisco_ise_ip_addr_dtos)) |
| 61 | +- `is_ise_enabled` (Boolean) Value true for Cisco ISE Server. Default value is false |
| 62 | +- `message_key` (String) Message key used to encrypt shared secret |
| 63 | +- `pxgrid_enabled` (Boolean) Value true for enable, false for disable. Default value is true |
| 64 | +- `use_dnac_cert_for_pxgrid` (Boolean) Value true to use DNAC certificate for Pxgrid. Default value is false |
| 65 | + |
| 66 | +### Read-Only |
| 67 | + |
| 68 | +- `id` (String) The id of the object |
| 69 | + |
| 70 | +<a id="nestedatt--cisco_ise_dtos"></a> |
| 71 | +### Nested Schema for `cisco_ise_dtos` |
| 72 | + |
| 73 | +Required: |
| 74 | + |
| 75 | +- `fqdn` (String) Fully-qualified domain name of the Cisco ISE server |
| 76 | +- `ip_address` (String) IP Address of the Cisco ISE Server |
| 77 | +- `password` (String) Password of the Cisco ISE server |
| 78 | +- `subscriber_name` (String) Subscriber name of the Cisco ISE server |
| 79 | +- `user_name` (String) User name of the Cisco ISE server |
| 80 | + |
| 81 | +Optional: |
| 82 | + |
| 83 | +- `description` (String) Description about the Cisco ISE server |
| 84 | +- `sshkey` (String) SSH key of the Cisco ISE server |
| 85 | + |
| 86 | + |
| 87 | +<a id="nestedatt--external_cisco_ise_ip_addr_dtos"></a> |
| 88 | +### Nested Schema for `external_cisco_ise_ip_addr_dtos` |
| 89 | + |
| 90 | +Optional: |
| 91 | + |
| 92 | +- `external_cisco_ise_ip_addresses` (Attributes List) (see [below for nested schema](#nestedatt--external_cisco_ise_ip_addr_dtos--external_cisco_ise_ip_addresses)) |
| 93 | +- `type` (String) |
| 94 | + |
| 95 | +<a id="nestedatt--external_cisco_ise_ip_addr_dtos--external_cisco_ise_ip_addresses"></a> |
| 96 | +### Nested Schema for `external_cisco_ise_ip_addr_dtos.external_cisco_ise_ip_addresses` |
| 97 | + |
| 98 | +Optional: |
| 99 | + |
| 100 | +- `external_ip_address` (String) |
| 101 | + |
| 102 | +## Import |
| 103 | + |
| 104 | +Import is supported using the following syntax: |
| 105 | + |
| 106 | +```shell |
| 107 | +terraform import catalystcenter_authentication_policy_server.example "<id>" |
| 108 | +``` |
0 commit comments