» 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:
» 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