7 lines
245 B
HCL
7 lines
245 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}/acls/nomad-anon-bootstrap.hcl")
|
|
}
|