13 lines
426 B
HCL
13 lines
426 B
HCL
resource "nomad_acl_policy" "create_post_bootstrap_policy" {
|
|
# count = can(tobool(var.nomad_secret_id)) ? 1 : 0
|
|
name = "anonymous"
|
|
description = "Anon RW"
|
|
rules_hcl = file("${path.module}/nomad-anon-bootstrap.hcl")
|
|
}
|
|
|
|
resource "nomad_acl_policy" "admin" {
|
|
name = "admin"
|
|
description = "admin policy with access to everything"
|
|
rules_hcl = file("${path.module}/nomad-anon-bootstrap.hcl")
|
|
}
|