diff --git a/README.md b/README.md index 74ce42c..2b43378 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ No modules. | [vault_identity_entity.extra_roles](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/identity_entity) | resource | | [vault_identity_entity.tenant_admin](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/identity_entity) | resource | | [vault_identity_group.tenant_group](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/identity_group) | resource | -| [vault_identity_group.this](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/identity_group) | resource | | [vault_identity_group_alias.this](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/identity_group_alias) | resource | | [vault_policy.extra_policies](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/policy) | resource | | [vault_policy.tenant_admin](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/resources/policy) | resource | diff --git a/approle_auth.tf b/approle_auth.tf index cb28e2b..0ca47c9 100644 --- a/approle_auth.tf +++ b/approle_auth.tf @@ -7,15 +7,6 @@ resource "vault_auth_backend" "approle" { } } -resource "vault_identity_group" "this" { - name = var.tenant_name - type = "internal" - metadata = { - tenant = var.tenant_name - prefix = var.tenant_prefix - } -} - resource "vault_identity_group_alias" "this" { name = var.tenant_name mount_accessor = vault_auth_backend.approle.accessor