├── .circleci └── config.yml ├── LICENSE ├── README.md ├── SUPPORT.rst ├── Terraform_Container_Readme.md ├── automation_container ├── Dockerfile └── README.md ├── aws_elb_autoscale ├── README.md ├── aws_cft │ ├── aws_cft_alb_v1.1.tf │ ├── aws_cft_vars.tf │ ├── terraform.tfvars │ └── webserver_config_amzn_ami.sh ├── aws_modules_version │ ├── eni_lambda │ │ ├── eni.tf │ │ └── eni_vars.tf │ ├── eni_lambda_natgw │ │ ├── eni.tf │ │ └── eni_vars.tf │ ├── fw_vars.tf │ ├── lambda_functions │ │ ├── lambda.tf │ │ ├── lambda_v1.test │ │ └── lambda_variables.tf │ ├── main.tf │ ├── prep_tf.py │ ├── sns │ │ ├── sns.tf │ │ └── sns_variables.tf │ ├── sqs │ │ └── sqs.tf │ ├── terraform.tfvars │ └── vpc │ │ ├── .DS_Store │ │ ├── vpc.tf │ │ └── vpc_variables.tf └── webserver_ami_ids.md ├── aws_two_tier ├── README.md ├── aws_two_tier.tf ├── aws_vars.tf ├── check_fw.sh ├── terraform.tfvars └── webserver_config_amzn_ami.sh ├── aws_two_tier_no_bootstrap_with_ansible ├── README.md ├── apache_install.sh ├── aws_creds.tf ├── aws_two_tier.tf ├── aws_vars.tf ├── check_fw_v2.sh ├── configure_firewall.sh ├── pan.log ├── terraform.tfstate ├── terraform.tfvars └── webserver_config_amzn_ami.sh ├── aws_vpc_endpoint ├── aws_provider.tf ├── create_vpc_endpoint.tf ├── terraform.tfvars └── vpc_endpoint_vars.tf ├── aws_vpc_endpoint_service ├── aws_provider.tf ├── create_aws_vpc_endpoint_service.tf └── endpoint_service_vars.tf ├── azure_two_tier_sample ├── README.md ├── az_two_tier.tf ├── fw_vars.tf └── terraform.tfvars ├── one-click-multi-cloud ├── README.md ├── one-click-aws │ ├── README.md │ ├── aws_two_tier.tf │ ├── aws_vars.tf │ ├── check_fw.sh │ ├── configure_firewall.sh │ ├── terraform.tfvars │ └── webserver_config_amzn_ami.sh └── one-click-azure │ ├── README.md │ ├── az_two_tier.tf │ ├── configure_firewall.sh │ ├── fw_vars.tf │ └── terraform.tfvars ├── pan_guard_duty ├── README.md ├── aws_creds.tf ├── gd.zip ├── gd_deploy.tf ├── gd_vars.tf ├── lambda_code │ ├── lambda_fw_config.py │ ├── pan │ │ ├── __init__.py │ │ ├── afapi │ │ │ ├── __init__.py │ │ │ └── v1_0.py │ │ ├── commit.py │ │ ├── config.py │ │ ├── http.py │ │ ├── licapi │ │ │ ├── __init__.py │ │ │ └── v1.py │ │ ├── rc.py │ │ ├── wfapi.py │ │ └── xapi.py │ ├── pan_python-0.12.0-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ └── top_level.txt │ ├── pandevice-0.5.3-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt │ └── pandevice │ │ ├── __init__.py │ │ ├── base.py │ │ ├── device.py │ │ ├── errors.py │ │ ├── firewall.py │ │ ├── ha.py │ │ ├── network.py │ │ ├── objects.py │ │ ├── panorama.py │ │ ├── policies.py │ │ ├── predefined.py │ │ ├── updater.py │ │ └── userid.py └── pan-gd-arch.png ├── panos_provider_sample_with_interface_config ├── .gitignore ├── README.md ├── commit.sh ├── fw_config.tf ├── fw_manifest.txt ├── fw_vars.tf ├── panos_provider.tf └── terraform.tfvars ├── sample ├── README.md ├── deploy_pavm.tf ├── deploy_vpc.tf └── variables.tf └── vpc_sample ├── aws_two_tier.tf ├── aws_vars.tf └── terraform.tfvars /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/SUPPORT.rst -------------------------------------------------------------------------------- /Terraform_Container_Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/Terraform_Container_Readme.md -------------------------------------------------------------------------------- /automation_container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/automation_container/Dockerfile -------------------------------------------------------------------------------- /automation_container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/automation_container/README.md -------------------------------------------------------------------------------- /aws_elb_autoscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/README.md -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_cft/aws_cft_alb_v1.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_cft/aws_cft_alb_v1.1.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_cft/aws_cft_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_cft/aws_cft_vars.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_cft/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_cft/terraform.tfvars -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_cft/webserver_config_amzn_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_cft/webserver_config_amzn_ami.sh -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/eni_lambda/eni.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/eni_lambda/eni.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/eni_lambda/eni_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/eni_lambda/eni_vars.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/eni_lambda_natgw/eni.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/eni_lambda_natgw/eni.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/eni_lambda_natgw/eni_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/eni_lambda_natgw/eni_vars.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/fw_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/fw_vars.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/lambda_functions/lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/lambda_functions/lambda.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/lambda_functions/lambda_v1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/lambda_functions/lambda_v1.test -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/lambda_functions/lambda_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/lambda_functions/lambda_variables.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/main.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/prep_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/prep_tf.py -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/sns/sns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/sns/sns.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/sns/sns_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/sns/sns_variables.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/sqs/sqs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/sqs/sqs.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/terraform.tfvars -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/vpc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/vpc/.DS_Store -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/vpc/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/vpc/vpc.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/aws_modules_version/vpc/vpc_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/aws_modules_version/vpc/vpc_variables.tf -------------------------------------------------------------------------------- /aws_elb_autoscale/webserver_ami_ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_elb_autoscale/webserver_ami_ids.md -------------------------------------------------------------------------------- /aws_two_tier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/README.md -------------------------------------------------------------------------------- /aws_two_tier/aws_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/aws_two_tier.tf -------------------------------------------------------------------------------- /aws_two_tier/aws_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/aws_vars.tf -------------------------------------------------------------------------------- /aws_two_tier/check_fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/check_fw.sh -------------------------------------------------------------------------------- /aws_two_tier/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/terraform.tfvars -------------------------------------------------------------------------------- /aws_two_tier/webserver_config_amzn_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier/webserver_config_amzn_ami.sh -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/README.md -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/apache_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/apache_install.sh -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/aws_creds.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/aws_creds.tf -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/aws_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/aws_two_tier.tf -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/aws_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/aws_vars.tf -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/check_fw_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/check_fw_v2.sh -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/configure_firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/configure_firewall.sh -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/pan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/pan.log -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/terraform.tfstate -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/terraform.tfvars -------------------------------------------------------------------------------- /aws_two_tier_no_bootstrap_with_ansible/webserver_config_amzn_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_two_tier_no_bootstrap_with_ansible/webserver_config_amzn_ami.sh -------------------------------------------------------------------------------- /aws_vpc_endpoint/aws_provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint/aws_provider.tf -------------------------------------------------------------------------------- /aws_vpc_endpoint/create_vpc_endpoint.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint/create_vpc_endpoint.tf -------------------------------------------------------------------------------- /aws_vpc_endpoint/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint/terraform.tfvars -------------------------------------------------------------------------------- /aws_vpc_endpoint/vpc_endpoint_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint/vpc_endpoint_vars.tf -------------------------------------------------------------------------------- /aws_vpc_endpoint_service/aws_provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint_service/aws_provider.tf -------------------------------------------------------------------------------- /aws_vpc_endpoint_service/create_aws_vpc_endpoint_service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint_service/create_aws_vpc_endpoint_service.tf -------------------------------------------------------------------------------- /aws_vpc_endpoint_service/endpoint_service_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/aws_vpc_endpoint_service/endpoint_service_vars.tf -------------------------------------------------------------------------------- /azure_two_tier_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/azure_two_tier_sample/README.md -------------------------------------------------------------------------------- /azure_two_tier_sample/az_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/azure_two_tier_sample/az_two_tier.tf -------------------------------------------------------------------------------- /azure_two_tier_sample/fw_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/azure_two_tier_sample/fw_vars.tf -------------------------------------------------------------------------------- /azure_two_tier_sample/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/azure_two_tier_sample/terraform.tfvars -------------------------------------------------------------------------------- /one-click-multi-cloud/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/README.md -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/aws_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/aws_two_tier.tf -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/aws_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/aws_vars.tf -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/check_fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/check_fw.sh -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/configure_firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/configure_firewall.sh -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/terraform.tfvars -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-aws/webserver_config_amzn_ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-aws/webserver_config_amzn_ami.sh -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-azure/README.md -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-azure/az_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-azure/az_two_tier.tf -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-azure/configure_firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-azure/configure_firewall.sh -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-azure/fw_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-azure/fw_vars.tf -------------------------------------------------------------------------------- /one-click-multi-cloud/one-click-azure/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/one-click-multi-cloud/one-click-azure/terraform.tfvars -------------------------------------------------------------------------------- /pan_guard_duty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/README.md -------------------------------------------------------------------------------- /pan_guard_duty/aws_creds.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/aws_creds.tf -------------------------------------------------------------------------------- /pan_guard_duty/gd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/gd.zip -------------------------------------------------------------------------------- /pan_guard_duty/gd_deploy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/gd_deploy.tf -------------------------------------------------------------------------------- /pan_guard_duty/gd_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/gd_vars.tf -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/lambda_fw_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/lambda_fw_config.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/__init__.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/afapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/afapi/__init__.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/afapi/v1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/afapi/v1_0.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/commit.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/config.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/http.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/licapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/licapi/__init__.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/licapi/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/licapi/v1.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/rc.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/wfapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/wfapi.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan/xapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan/xapi.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/installed-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/installed-files.txt -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pan_python-0.12.0-py2.7.egg-info/top_level.txt -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/installed-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/installed-files.txt -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | pan-python 2 | -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice-0.5.3-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pandevice 2 | -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/__init__.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/base.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/device.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/errors.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/firewall.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/ha.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/network.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/objects.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/panorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/panorama.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/policies.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/predefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/predefined.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/updater.py -------------------------------------------------------------------------------- /pan_guard_duty/lambda_code/pandevice/userid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/lambda_code/pandevice/userid.py -------------------------------------------------------------------------------- /pan_guard_duty/pan-gd-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/pan_guard_duty/pan-gd-arch.png -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/.gitignore: -------------------------------------------------------------------------------- 1 | *.tfstate 2 | .terraform 3 | -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/README.md -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/commit.sh -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/fw_config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/fw_config.tf -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/fw_manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/fw_manifest.txt -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/fw_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/fw_vars.tf -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/panos_provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/panos_provider.tf -------------------------------------------------------------------------------- /panos_provider_sample_with_interface_config/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/panos_provider_sample_with_interface_config/terraform.tfvars -------------------------------------------------------------------------------- /sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/sample/README.md -------------------------------------------------------------------------------- /sample/deploy_pavm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/sample/deploy_pavm.tf -------------------------------------------------------------------------------- /sample/deploy_vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/sample/deploy_vpc.tf -------------------------------------------------------------------------------- /sample/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/sample/variables.tf -------------------------------------------------------------------------------- /vpc_sample/aws_two_tier.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/vpc_sample/aws_two_tier.tf -------------------------------------------------------------------------------- /vpc_sample/aws_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/vpc_sample/aws_vars.tf -------------------------------------------------------------------------------- /vpc_sample/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaloAltoNetworks/terraform-templates/HEAD/vpc_sample/terraform.tfvars --------------------------------------------------------------------------------