scylladb / scylla-ansible-roles

Ansible roles for deploying and managing Scylla, Scylla-Manager and Scylla-Monitoring
44 stars 37 forks source link

audit _categories don't get writtten for scylla.yaml #120

Open tarzanek opened 2 years ago

tarzanek commented 2 years ago

If you use

scylla_yaml_params:
  authenticator: PasswordAuthenticator
  authorizer: CassandraAuthorizer
  audit: "table"
  audit_categories: "DCL,DDL,AUTH,ADMIN"
  audit_keyspaces: "myauditkeyspace"  

it won't write the line audit_categories: "DCL,DDL,AUTH,ADMIN" to the file if you rearrange:

scylla_yaml_params:
  authenticator: PasswordAuthenticator
  authorizer: CassandraAuthorizer
  audit: "table"  
  audit_keyspaces: "myauditkeyspace"  
  audit_categories: "DCL,DDL,AUTH,ADMIN"

they will

vladzcloudius commented 1 year ago

Huh? What is this "dark magic", @tarzanek ? ;)