├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codeql-analysis.yml │ ├── python-package.yml │ └── python-release.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── examples ├── README.md ├── acl-creation-multiops │ ├── docker-compose.yml │ ├── kafka_server_jaas.conf │ └── playbook.yml ├── acl-creation │ ├── docker-compose.yml │ ├── kafka_server_jaas.conf │ └── playbook.yml ├── ansible.cfg ├── requirements.yml ├── scram-user-configuration │ ├── docker-compose.yml │ ├── kafka_server_jaas.conf │ └── playbook.yml ├── topic-creation │ ├── docker-compose.yml │ └── playbook.yml ├── topic-options-update │ ├── docker-compose.yml │ └── playbook.yml ├── topic-partition-update │ ├── docker-compose.yml │ └── playbook.yml └── topic-replica-update │ ├── docker-compose.yml │ └── playbook.yml ├── library ├── kafka_acl.py ├── kafka_acls.py ├── kafka_consumer_group.py ├── kafka_info.py ├── kafka_lib.py ├── kafka_quotas.py ├── kafka_stat_lag.py ├── kafka_topic.py ├── kafka_topics.py ├── kafka_user.py └── kafka_users.py ├── meta └── main.yml ├── module_utils ├── kafka_acl.py ├── kafka_consumer_lag.py ├── kafka_fix_import.py ├── kafka_lib_acl.py ├── kafka_lib_commons.py ├── kafka_lib_errors.py ├── kafka_lib_import_checker.py ├── kafka_lib_quotas.py ├── kafka_lib_topic.py ├── kafka_lib_user.py ├── kafka_manager.py ├── kafka_protocol.py ├── kafka_scram.py ├── kafka_version_guesser.py └── ssl_utils.py ├── molecule └── default │ ├── Dockerfile.j2 │ ├── INSTALL.rst │ ├── converge.yml │ ├── kafka_server_jaas.conf │ ├── molecule.yml │ ├── tests │ ├── __init__.py │ ├── ansible_utils.py │ ├── test_acl_default.py │ ├── test_consumer_group_default.py │ ├── test_default.py │ ├── test_quotas_default.py │ ├── test_ssl_default.py │ ├── test_topic_default.py │ ├── test_users.py │ └── utils.py │ ├── tls │ ├── ca │ │ ├── ca.cert.pem │ │ ├── ca.key.pem │ │ ├── index.txt │ │ ├── index.txt.attr │ │ ├── index.txt.old │ │ ├── newcerts │ │ │ └── 1000.pem │ │ ├── serial │ │ └── serial.old │ ├── cacert.pem │ ├── client │ │ ├── client.cert.pem │ │ ├── client.csr.pem │ │ └── client.key.pem │ ├── credentials │ │ └── whatever_store.txt │ ├── generate.sh │ ├── intermediate │ │ ├── index.txt │ │ ├── index.txt.attr │ │ ├── index.txt.attr.old │ │ ├── index.txt.old │ │ ├── intermediate.cert.pem │ │ ├── intermediate.csr.pem │ │ ├── intermediate.key.pem │ │ ├── newcerts │ │ │ ├── 1000.pem │ │ │ ├── 1001.pem │ │ │ └── 1002.pem │ │ ├── serial │ │ └── serial.old │ ├── keystore │ │ ├── server-keystore.jks │ │ ├── server-keystore.p12 │ │ ├── server-truststore.jks │ │ ├── zk-keystore.jks │ │ ├── zk-keystore.p12 │ │ └── zk-truststore.jks │ ├── openssl-ca.cnf │ ├── openssl-intermediate-ca.cnf │ ├── server.pem │ ├── server │ │ ├── server.cert.pem │ │ ├── server.csr.pem │ │ └── server.key.pem │ ├── zk.pem │ └── zk │ │ ├── server.cert.pem │ │ ├── server.csr.pem │ │ └── server.key.pem │ └── zoo-tls.cfg ├── publish-ansible-collection.sh ├── requirements.txt ├── test-requirements-py2.7-3.6.txt ├── test-requirements-py3.7.txt ├── test-requirements.txt └── tests └── module_utils ├── test_kafka_acls.py └── test_kafka_scram.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/acl-creation-multiops/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation-multiops/docker-compose.yml -------------------------------------------------------------------------------- /examples/acl-creation-multiops/kafka_server_jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation-multiops/kafka_server_jaas.conf -------------------------------------------------------------------------------- /examples/acl-creation-multiops/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation-multiops/playbook.yml -------------------------------------------------------------------------------- /examples/acl-creation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation/docker-compose.yml -------------------------------------------------------------------------------- /examples/acl-creation/kafka_server_jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation/kafka_server_jaas.conf -------------------------------------------------------------------------------- /examples/acl-creation/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/acl-creation/playbook.yml -------------------------------------------------------------------------------- /examples/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/ansible.cfg -------------------------------------------------------------------------------- /examples/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/requirements.yml -------------------------------------------------------------------------------- /examples/scram-user-configuration/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/scram-user-configuration/docker-compose.yml -------------------------------------------------------------------------------- /examples/scram-user-configuration/kafka_server_jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/scram-user-configuration/kafka_server_jaas.conf -------------------------------------------------------------------------------- /examples/scram-user-configuration/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/scram-user-configuration/playbook.yml -------------------------------------------------------------------------------- /examples/topic-creation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-creation/docker-compose.yml -------------------------------------------------------------------------------- /examples/topic-creation/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-creation/playbook.yml -------------------------------------------------------------------------------- /examples/topic-options-update/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-options-update/docker-compose.yml -------------------------------------------------------------------------------- /examples/topic-options-update/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-options-update/playbook.yml -------------------------------------------------------------------------------- /examples/topic-partition-update/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-partition-update/docker-compose.yml -------------------------------------------------------------------------------- /examples/topic-partition-update/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-partition-update/playbook.yml -------------------------------------------------------------------------------- /examples/topic-replica-update/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-replica-update/docker-compose.yml -------------------------------------------------------------------------------- /examples/topic-replica-update/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/examples/topic-replica-update/playbook.yml -------------------------------------------------------------------------------- /library/kafka_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_acl.py -------------------------------------------------------------------------------- /library/kafka_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_acls.py -------------------------------------------------------------------------------- /library/kafka_consumer_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_consumer_group.py -------------------------------------------------------------------------------- /library/kafka_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_info.py -------------------------------------------------------------------------------- /library/kafka_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_lib.py -------------------------------------------------------------------------------- /library/kafka_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_quotas.py -------------------------------------------------------------------------------- /library/kafka_stat_lag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_stat_lag.py -------------------------------------------------------------------------------- /library/kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_topic.py -------------------------------------------------------------------------------- /library/kafka_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_topics.py -------------------------------------------------------------------------------- /library/kafka_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_user.py -------------------------------------------------------------------------------- /library/kafka_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/library/kafka_users.py -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/meta/main.yml -------------------------------------------------------------------------------- /module_utils/kafka_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_acl.py -------------------------------------------------------------------------------- /module_utils/kafka_consumer_lag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_consumer_lag.py -------------------------------------------------------------------------------- /module_utils/kafka_fix_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_fix_import.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_acl.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_commons.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_errors.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_import_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_import_checker.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_quotas.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_topic.py -------------------------------------------------------------------------------- /module_utils/kafka_lib_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_lib_user.py -------------------------------------------------------------------------------- /module_utils/kafka_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_manager.py -------------------------------------------------------------------------------- /module_utils/kafka_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_protocol.py -------------------------------------------------------------------------------- /module_utils/kafka_scram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_scram.py -------------------------------------------------------------------------------- /module_utils/kafka_version_guesser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/kafka_version_guesser.py -------------------------------------------------------------------------------- /module_utils/ssl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/module_utils/ssl_utils.py -------------------------------------------------------------------------------- /molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/default/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/INSTALL.rst -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | gather_facts: true 4 | -------------------------------------------------------------------------------- /molecule/default/kafka_server_jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/kafka_server_jaas.conf -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /molecule/default/tests/ansible_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/ansible_utils.py -------------------------------------------------------------------------------- /molecule/default/tests/test_acl_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_acl_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_consumer_group_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_consumer_group_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_quotas_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_quotas_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_ssl_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_ssl_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_topic_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_topic_default.py -------------------------------------------------------------------------------- /molecule/default/tests/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/test_users.py -------------------------------------------------------------------------------- /molecule/default/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tests/utils.py -------------------------------------------------------------------------------- /molecule/default/tls/ca/ca.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/ca/ca.cert.pem -------------------------------------------------------------------------------- /molecule/default/tls/ca/ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/ca/ca.key.pem -------------------------------------------------------------------------------- /molecule/default/tls/ca/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/ca/index.txt -------------------------------------------------------------------------------- /molecule/default/tls/ca/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /molecule/default/tls/ca/index.txt.old: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /molecule/default/tls/ca/newcerts/1000.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/ca/newcerts/1000.pem -------------------------------------------------------------------------------- /molecule/default/tls/ca/serial: -------------------------------------------------------------------------------- 1 | 1001 2 | -------------------------------------------------------------------------------- /molecule/default/tls/ca/serial.old: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /molecule/default/tls/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/cacert.pem -------------------------------------------------------------------------------- /molecule/default/tls/client/client.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/client/client.cert.pem -------------------------------------------------------------------------------- /molecule/default/tls/client/client.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/client/client.csr.pem -------------------------------------------------------------------------------- /molecule/default/tls/client/client.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/client/client.key.pem -------------------------------------------------------------------------------- /molecule/default/tls/credentials/whatever_store.txt: -------------------------------------------------------------------------------- 1 | password -------------------------------------------------------------------------------- /molecule/default/tls/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/generate.sh -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/index.txt -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/index.txt.attr.old: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/index.txt.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/index.txt.old -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/intermediate.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/intermediate.cert.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/intermediate.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/intermediate.csr.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/intermediate.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/intermediate.key.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/newcerts/1000.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/newcerts/1000.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/newcerts/1001.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/newcerts/1001.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/newcerts/1002.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/intermediate/newcerts/1002.pem -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/serial: -------------------------------------------------------------------------------- 1 | 1003 2 | -------------------------------------------------------------------------------- /molecule/default/tls/intermediate/serial.old: -------------------------------------------------------------------------------- 1 | 1002 2 | -------------------------------------------------------------------------------- /molecule/default/tls/keystore/server-keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/server-keystore.jks -------------------------------------------------------------------------------- /molecule/default/tls/keystore/server-keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/server-keystore.p12 -------------------------------------------------------------------------------- /molecule/default/tls/keystore/server-truststore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/server-truststore.jks -------------------------------------------------------------------------------- /molecule/default/tls/keystore/zk-keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/zk-keystore.jks -------------------------------------------------------------------------------- /molecule/default/tls/keystore/zk-keystore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/zk-keystore.p12 -------------------------------------------------------------------------------- /molecule/default/tls/keystore/zk-truststore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/keystore/zk-truststore.jks -------------------------------------------------------------------------------- /molecule/default/tls/openssl-ca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/openssl-ca.cnf -------------------------------------------------------------------------------- /molecule/default/tls/openssl-intermediate-ca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/openssl-intermediate-ca.cnf -------------------------------------------------------------------------------- /molecule/default/tls/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/server.pem -------------------------------------------------------------------------------- /molecule/default/tls/server/server.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/server/server.cert.pem -------------------------------------------------------------------------------- /molecule/default/tls/server/server.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/server/server.csr.pem -------------------------------------------------------------------------------- /molecule/default/tls/server/server.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/server/server.key.pem -------------------------------------------------------------------------------- /molecule/default/tls/zk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/zk.pem -------------------------------------------------------------------------------- /molecule/default/tls/zk/server.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/zk/server.cert.pem -------------------------------------------------------------------------------- /molecule/default/tls/zk/server.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/zk/server.csr.pem -------------------------------------------------------------------------------- /molecule/default/tls/zk/server.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/tls/zk/server.key.pem -------------------------------------------------------------------------------- /molecule/default/zoo-tls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/molecule/default/zoo-tls.cfg -------------------------------------------------------------------------------- /publish-ansible-collection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/publish-ansible-collection.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/requirements.txt -------------------------------------------------------------------------------- /test-requirements-py2.7-3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/test-requirements-py2.7-3.6.txt -------------------------------------------------------------------------------- /test-requirements-py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/test-requirements-py3.7.txt -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/module_utils/test_kafka_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/tests/module_utils/test_kafka_acls.py -------------------------------------------------------------------------------- /tests/module_utils/test_kafka_scram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenSorriaux/ansible-kafka-admin/HEAD/tests/module_utils/test_kafka_scram.py --------------------------------------------------------------------------------