diff --git a/README.md b/README.md index 583784e..f8c3703 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Leverges Terraform's [resource group template deployment](https://registry.terra Learn more about [Azure Policy Exemptions](https://docs.microsoft.com/en-us/azure/governance/policy/concepts/exemption-structure) +Note: Terraform v0.13 or greater is required to use this module. Download the latest Terraform at [https://www.terraform.io/downloads.html]([https://www.terraform.io/downloads.html]) + # Example Usage * Create 1 policy exemption with a RG exempt from all policies in an assignment. @@ -11,7 +13,7 @@ Learn more about [Azure Policy Exemptions](https://docs.microsoft.com/en-us/azur ```hcl module "policy_exemptions" { source = "globalbao/policy-exemptions/azurerm" - version = "0.1.0" + version = "0.1.1" policyExemptions = { exemption1 = { deploymentMode = "Incremental" @@ -34,7 +36,7 @@ module "policy_exemptions" { ```hcl module "policy_exemptions" { source = "globalbao/policy-exemptions/azurerm" - version = "0.1.0" + version = "0.1.1" policyExemptions = { exemption1 = { deploymentMode = "Incremental" diff --git a/examples/default/main.tf b/examples/default/main.tf index 2f5d416..59b66fa 100644 --- a/examples/default/main.tf +++ b/examples/default/main.tf @@ -1,6 +1,6 @@ module "policy_exemptions" { source = "globalbao/policy-exemptions/azurerm" - version = "0.1.0" + version = "0.1.1" policyExemptions = { exemption1 = { deploymentMode = "Incremental" diff --git a/examples/default/versions.tf b/examples/default/versions.tf index 7117131..684b365 100644 --- a/examples/default/versions.tf +++ b/examples/default/versions.tf @@ -1,3 +1,3 @@ terraform { - required_version = ">= 1.0" -} + required_version = ">= 0.13" +} \ No newline at end of file diff --git a/versions.tf b/versions.tf index 7117131..6b6318d 100644 --- a/versions.tf +++ b/versions.tf @@ -1,3 +1,3 @@ terraform { - required_version = ">= 1.0" + required_version = ">= 0.13" }