blob: 8cd9a74f837fedea5de322c8912f9c01475aa791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- name: AWS ISE Deployment Playbook
hosts: ise
connection: local
vars:
ise_username: admin
ise_password: P@sbg1234
ise_domain: sstcloud.com
ise_ntp_server: 10.10.0.1
ise_dns_server: 208.67.220.220
ise_timezone: America/Costa_Rica
aws_ise_ami: ami-0a8b4f863885c3372
aws_vpc_name: ISE VPC
aws_vpc_cidr: 10.10.0.0/16
aws_subnet_cidr: 10.10.1.0/24
aws_region: us-west-2
aws_public_access_cidr: 0.0.0.0/0
aws_keypair_name: ise_deployment
aws_instance_type: c5.4xlarge
roles:
- cisco.ise.aws_deployment
|