Fix nomad authelia auth
Fixes long standing bug since switching over to auto generated secrets. I forgot to update the bound audiences! This was somewhat mentioned in the error, but I didn't understand it.
This commit is contained in:
parent
4a10b97749
commit
32e34db160
@ -172,7 +172,7 @@ resource "nomad_acl_auth_method" "nomad_authelia" {
|
|||||||
oidc_discovery_url = "https://authelia.${var.base_hostname}"
|
oidc_discovery_url = "https://authelia.${var.base_hostname}"
|
||||||
oidc_client_id = module.nomad_oidc_client.client_id
|
oidc_client_id = module.nomad_oidc_client.client_id
|
||||||
oidc_client_secret = module.nomad_oidc_client.secret
|
oidc_client_secret = module.nomad_oidc_client.secret
|
||||||
bound_audiences = ["nomad"]
|
bound_audiences = [module.nomad_oidc_client.client_id]
|
||||||
oidc_scopes = [
|
oidc_scopes = [
|
||||||
"groups",
|
"groups",
|
||||||
"openid",
|
"openid",
|
||||||
@ -190,7 +190,7 @@ resource "nomad_acl_auth_method" "nomad_authelia" {
|
|||||||
resource "nomad_acl_binding_rule" "nomad_authelia_admin" {
|
resource "nomad_acl_binding_rule" "nomad_authelia_admin" {
|
||||||
description = "engineering rule"
|
description = "engineering rule"
|
||||||
auth_method = nomad_acl_auth_method.nomad_authelia.name
|
auth_method = nomad_acl_auth_method.nomad_authelia.name
|
||||||
selector = "\"nomad-deploy\" in list.roles"
|
selector = "\"nomad-admin\" in list.roles"
|
||||||
bind_type = "role"
|
bind_type = "role"
|
||||||
bind_name = "admin" # acls.nomad_acl_role.admin.name
|
bind_name = "admin" # acls.nomad_acl_role.admin.name
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user