Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Update terraform min version and readme. Fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseloudon committed Sep 14, 2021
1 parent 52df3a2 commit ef9b0b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ 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.

```hcl
module "policy_exemptions" {
source = "globalbao/policy-exemptions/azurerm"
version = "0.1.0"
version = "0.1.1"
policyExemptions = {
exemption1 = {
deploymentMode = "Incremental"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "policy_exemptions" {
source = "globalbao/policy-exemptions/azurerm"
version = "0.1.0"
version = "0.1.1"
policyExemptions = {
exemption1 = {
deploymentMode = "Incremental"
Expand Down
4 changes: 2 additions & 2 deletions examples/default/versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 1.0"
}
required_version = ">= 0.13"
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 1.0"
required_version = ">= 0.13"
}

0 comments on commit ef9b0b1

Please sign in to comment.