...
As mentioned Above we have 3 types of consumers, we can create new consumers by updating the variable in the private inventory as mentioned below.
Code Block |
---|
# Consumer groups with ACL mapping username1_acls: - orgCreate username2_acls: - orgAccess # Consumers to be on-boarded with consumer group kong_consumers: - username: username1-user groups: "{{ username1_acls }}" state: present - username: username2-user groups: "{{ username2_acls }}" state: absent |
...