Skip to content
This repository has been archived by the owner on Jun 10, 2021. It is now read-only.

Commit

Permalink
Documentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stealthllama committed Mar 2, 2020
1 parent 4ed4b7c commit 6dce4aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,27 @@ provider "azurerm" {
client_secret = var.azure_client_secret
}
module "bootstrap" {
source = "github.com/stealthllama/terraform-azurerm-panos-bootstrap"
module "panos-bootstrap" {
source = "stealthllama/panos-bootstrap/azurerm"
version = "1.0.3"
azure_resource_group = var.azure_resource_group
azure_location = var.azure_location
hostname = "az-firewall"
panorama-server = "panorama1.example.org"
panorama-server2 = "panorama2.example.org
panorama-server2 = "panorama2.example.org"
tplname = "Azure Firewall Template"
dgname = "Azure Firewalls"
vm-auth-key = "supersecretauthkey"
}
```

## Requirements

The [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest) must be installed on the host executing the Terraform plan.

## Instructions

1. Define a `main.tf` file that calls the module and provides any required and optional variables.
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ resource "local_file" "write-init-cfg" {
}

resource "null_resource" "file_uploads" {
# for_each = fileset("${path.root}/files", "**")

provisioner "local-exec" {
command = "cd ${path.root}/files; az storage file upload-batch --account-name ${azurerm_storage_account.bootstrap-storage-acct.name} --account-key ${azurerm_storage_account.bootstrap-storage-acct.primary_access_key} --source . --destination ${azurerm_storage_share.bootstrap-storage-share.name}"
Expand Down

0 comments on commit 6dce4aa

Please sign in to comment.