Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# Consumer groups with ACL mapping
username1_acls:
  - orgCreate
  
username2_acls:
  - orgAccess

# Consumers to be on-boarded with consumer group
kong_consumers:
  - username: kong_username1-user
    groups: "{{ username1_acls }}"
    state: present
    
  - username: kong_username2-user
    groups: "{{ username2_acls }}"
    state: absent

...