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.

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/vault/r/policy.html