» vault_policy

» Example Usage

resource "vault_policy" "example" {
  name = "dev-team"

  policy = <<EOT
path "secret/my_app" {
  policy = "write"
}
EOT
}

» Argument Reference

The following arguments are supported:

  • name - (Required) The name of the policy

  • policy - (Required) String containing a Vault policy

» Attributes Reference

No additional attributes are exported by this resource.

» Import

Policies can be imported using the name, e.g.

$ terraform import vault_policy.example dev-team