From 1bcf6cc12dfdb92a9c0a48d0b881893ffcfb1ca7 Mon Sep 17 00:00:00 2001 From: John Dewey Date: Thu, 6 Jun 2024 12:42:34 -0700 Subject: [PATCH] Moved tags outside of optional section in README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 176dd56..94b0113 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ Terraform for Corelight's Azure Cloud Sensor Deployment. overview ## Usage + ```terraform module "sensor" { source = "github.com/corelight/terraform-azure-sensor" @@ -19,14 +20,15 @@ module "sensor" { community_string = "" sensor_ssh_public_key = "" - # (Optional) Cloud Enrichment Variables - enrichment_storage_account_name = "" - enrichment_storage_container_name = "" tags = { foo: bar, terraform: true, purpose: Corelight } + + # (Optional) Cloud Enrichment Variables + enrichment_storage_account_name = "" + enrichment_storage_container_name = "" } ```