diff --git a/README.md b/README.md index c39b416..6c3a2cf 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,15 @@ -[![Terraform Unit Tests](https://github.com/PinakiKundu/terraform-azure-rbac/actions/workflows/tf-unit-tests.yml/badge.svg)](https://github.com/PinakiKundu/terraform-azure-rbac/actions/workflows/tf-unit-tests.yml) -[![Terraform Plan/Apply](https://github.com/PinakiKundu/terraform-azure-rbac/actions/workflows/tf-plan-apply.yml/badge.svg)](https://github.com/PinakiKundu/terraform-azure-rbac/actions/workflows/tf-plan-apply.yml) - ## Requirements -| Name | Version | -|------|---------| -| [terraform](#requirement\_terraform) | >= 1.1.0 | -| [azurerm](#requirement\_azurerm) | >= 3.0.1 | +No requirements. ## Providers | Name | Version | |------|---------| -| [azurerm](#provider\_azurerm) | >= 3.0.1 | +| [azurerm](#provider\_azurerm) | n/a | ## Sample @@ -24,7 +18,7 @@ ```hcl module "role_assignment" { - source = "../module" + source = "../" role_mapping = [ { diff --git a/module/locals.tf b/locals.tf similarity index 100% rename from module/locals.tf rename to locals.tf diff --git a/module/versions.tf b/module/versions.tf deleted file mode 100644 index 8ca8422..0000000 --- a/module/versions.tf +++ /dev/null @@ -1,9 +0,0 @@ -terraform { - required_providers { - azurerm = { - source = "hashicorp/azurerm" - version = ">= 3.0.1" - } - } - required_version = ">= 1.1.0" -} diff --git a/module/rbac.tf b/rbac.tf similarity index 100% rename from module/rbac.tf rename to rbac.tf diff --git a/samples/main.tf b/samples/main.tf index 9aeb0c4..e3b6618 100644 --- a/samples/main.tf +++ b/samples/main.tf @@ -1,5 +1,5 @@ module "role_assignment" { - source = "../module" + source = "../" role_mapping = [ { diff --git a/module/variables.tf b/variables.tf similarity index 100% rename from module/variables.tf rename to variables.tf