Skip to content

Sync azure Terraform module documentation to pan.dev #897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
hide_title: true
id: standalone_panorama
id: panorama_standalone
keywords:
- pan-os
- panos
Expand All @@ -14,7 +14,7 @@ keywords:
- azure
pagination_next: null
pagination_prev: null
sidebar_label: Standalone Panorama Deployment
sidebar_label: Panorama Standalone
title: Standalone Panorama Deployment
---

Expand All @@ -29,7 +29,7 @@ The Terraform code presented here will deploy Palo Alto Networks Panorama manage
(without additional logging disks). For option on how to add additional logging disks - please refer to panorama
[module documentation](../../modules/panorama#input_logging_disks).

[![GitHub Logo](/img/view_on_github.png)](https://github.com/PaloAltoNetworks/terraform-azurerm-swfw-modules/tree/main/examples/standalone_panorama) [![Terraform Logo](/img/view_on_terraform_registry.png)](https://registry.terraform.io/modules/PaloAltoNetworks/swfw-modules/azurerm/latest/examples/standalone_panorama)
[![GitHub Logo](/img/view_on_github.png)](https://github.com/PaloAltoNetworks/terraform-azurerm-swfw-modules/tree/main/examples/panorama_standalone) [![Terraform Logo](/img/view_on_terraform_registry.png)](https://registry.terraform.io/modules/PaloAltoNetworks/swfw-modules/azurerm/latest/examples/panorama_standalone)

## Topology

Expand Down Expand Up @@ -296,7 +296,9 @@ map(object({
address_prefixes = optional(list(string), [])
network_security_group_key = optional(string)
route_table_key = optional(string)
default_outbound_access_enabled = optional(bool)
enable_storage_service_endpoint = optional(bool)
enable_appgw_delegation = optional(bool)
enable_cloudngfw_delegation = optional(bool)
})), {})
}))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ Basic Azure VM image configuration.

Following properties are available:

- `use_airs` - (`bool`, optional, defaults to `false`) when set to `true`, the AI Runtime Security VM image is
used instead of the one passed to the module and version for `airs-flex` offer must be provided.
- `version` - (`string`, optional, defaults to `null`) VM-Series PAN-OS version; list available with
`az vm image list -o table --publisher paloaltonetworks --offer vmseries-flex --all`.
- `publisher` - (`string`, optional, defaults to `paloaltonetworks`) the Azure Publisher identifier for a image
Expand All @@ -190,6 +192,7 @@ Type:

```hcl
object({
use_airs = optional(bool, false)
version = optional(string)
publisher = optional(string, "paloaltonetworks")
offer = optional(string, "vmseries-flex")
Expand Down
3 changes: 3 additions & 0 deletions products/terraform/docs/swfw/azure/vmseries/modules/vmss.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ Basic Azure VM configuration.

Following properties are available:

- `use_airs` - (`bool`, optional, defaults to `false`) when set to `true`, the AI Runtime Security VM image is
used instead of the one passed to the module and version for `airs-flex` offer must be provided.
- `version` - (`string`, optional, defaults to `null`) VM-Series PAN-OS version; list available with
`az vm image list -o table --publisher paloaltonetworks --offer vmseries-flex --all`.
- `publisher` - (`string`, optional, defaults to `paloaltonetworks`) the Azure Publisher identifier for an image
Expand All @@ -261,6 +263,7 @@ Type:

```hcl
object({
use_airs = optional(bool, false)
version = optional(string)
publisher = optional(string, "paloaltonetworks")
offer = optional(string, "vmseries-flex")
Expand Down
9 changes: 9 additions & 0 deletions products/terraform/docs/swfw/azure/vmseries/modules/vnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ Name | Type | Description
Name | Description
--- | ---
`virtual_network_id` | The identifier of the created or sourced Virtual Network.
`virtual_network_name` | The name of the created or sourced Virtual Network.
`virtual_network_resource_group` | The Resource Group name of the created or sourced Virtual Network.
`vnet_cidr` | VNET address space.
`subnet_ids` | The identifiers of the created or sourced Subnets.
`subnet_cidrs` | Subnet CIDRs (sourced or created).
Expand Down Expand Up @@ -517,9 +519,14 @@ List of available attributes of each subnet entry:
`network_security_groups` that should be assigned to this subnet.
- `route_table_key` - (`string`, optional, defaults to `null`) a key identifying a Route Table defined in
`route_tables` that should be assigned to this subnet.
- `default_outbound_access_enabled` - (`bool`, optional, defaults to `false`) a flag that enables default outbound access to
the Internet from the subnet. Using explicit Internet access methods is recommended.
- `enable_storage_service_endpoint` - (`bool`, optional, defaults to `false`) a flag that enables `Microsoft.Storage` service
endpoint on a subnet. This is a suggested setting for the management interface when full
bootstrapping using an Azure Storage Account is used.
- `enable_appgw_delegation` - (`bool`, optional, defaults to `false`) a flag that enables subnet delegation to
`Microsoft.Network/applicationGateways` service. This is required for Application Gateway
Enhanced Network Isolation.
- `enable_cloudngfw_delegation` - (`bool`, optional, defaults to `false`) a flag that enables subnet delegation to
`PaloAltoNetworks.Cloudngfw/firewalls` service. This is required for Cloud NGFW to work
in a VNET-based deployment.
Expand Down Expand Up @@ -555,7 +562,9 @@ map(object({
address_prefixes = optional(list(string), [])
network_security_group_key = optional(string)
route_table_key = optional(string)
default_outbound_access_enabled = optional(bool, false)
enable_storage_service_endpoint = optional(bool, false)
enable_appgw_delegation = optional(bool, false)
enable_cloudngfw_delegation = optional(bool, false)
}))
```
Expand Down
Loading