Newer
Older
# FireMon NonProduction MVP
## AsBuilt
The following steps;
```shell
> tofu init
> tofu validate
> tofu plan -var-file=$HOME/firemon-mvp.tfvars
> tofu apply -var-file=$HOME/firemon-mvp.tfvars --auto-approve
```
Connection to the instance/vm is done using the 'IaC' public ssh key that was generated and stored in 1password store.
```shell
> ssh -i $HOME/.ssh/iac_rsa.pub ubuntu@<instance_ip>
```
To tear down instance;
```shell
> tofu destroy --auto-approve -var-file=$HOME/firemon-mvp.tfvars
## TODO
- [ ] terrraform data sources for initial vpc's
# References
- [Cisco DNA Center 2.3.5 on AWS Deployment Guide](https://www.cisco.com/c/en/us/td/docs/cloud-systems-management/network-automation-and-management/dna-center/dna-center-va/aws/deploy/b_cisco_dna_center_on_aws_deployment_guide/m_getting_started_with_cisco_dna_center_on_aws.html#Cisco_dna_center_va_aws_deploy_ise_with_dnac_guidelines)
- [Cisco Identity Services Engine on AWS](https://aws-ia.github.io/cfn-ps-cisco-ise-on-aws/)
- [terraform-provider-ciscoise](https://github.com/CiscoISE/terraform-provider-ciscoise)