├── .gitignore ├── .pmtignore ├── LICENSE ├── README.md ├── issue_template.md ├── pull_request_template.md ├── wso2iot ├── README.md ├── files │ ├── configs │ │ ├── dropins │ │ │ └── .gitkeep │ │ └── lib │ │ │ └── .gitkeep │ └── system │ │ └── .gitkeep ├── hieradata │ └── dev │ │ └── wso2 │ │ └── wso2iot │ │ └── pattern-0 │ │ ├── default.yaml │ │ ├── device-backend.yaml │ │ ├── device-manager.yaml │ │ └── iot-broker.yaml ├── manifests │ └── init.pp ├── metadata.json ├── package.xml ├── pom.xml └── templates │ └── 3.1.0 │ ├── bin │ ├── broker.sh.erb │ ├── ciphertool.sh.erb │ └── iot-server.sh.erb │ ├── conf │ ├── api-manager.xml.erb │ ├── apim-integration.xml.erb │ ├── app-manager.xml.erb │ ├── axis2 │ │ └── axis2.xml.erb │ ├── carbon.xml.erb │ ├── cdm-config.xml.erb │ ├── certificate-config.xml.erb │ ├── datasources │ │ ├── android-datasources.xml.erb │ │ ├── cdm-datasources.xml.erb │ │ ├── ios-datasources.xml.erb │ │ ├── master-datasources.xml.erb │ │ └── windows-datasources.xml.erb │ ├── etc │ │ └── webapp-authenticator-config.xml.erb │ ├── identity │ │ └── identity.xml.erb │ ├── ios-config.xml.erb │ ├── registry.xml.erb │ ├── security │ │ ├── authenticators.xml.erb │ │ ├── cipher-text.properties.erb │ │ └── cipher-tool.properties.erb │ ├── tenant-mgt.xml.erb │ ├── tomcat │ │ └── catalina-server.xml.erb │ └── user-mgt.xml.erb │ ├── password-tmp.erb │ ├── repository │ ├── deployment │ │ └── server │ │ │ ├── devicetypes │ │ │ ├── android.xml.erb │ │ │ └── ios.xml.erb │ │ │ └── jaggeryapps │ │ │ ├── android-web-agent │ │ │ └── app │ │ │ │ └── conf │ │ │ │ └── config.json.erb │ │ │ ├── config.json │ │ │ ├── devicemgt │ │ │ └── app │ │ │ │ └── conf │ │ │ │ ├── app-conf.json.erb │ │ │ │ ├── config.json.erb │ │ │ │ └── toplink-menu.json.erb │ │ │ ├── ios-web-agent │ │ │ └── app │ │ │ │ └── conf │ │ │ │ ├── config.json.back.erb │ │ │ │ └── config.json.erb │ │ │ ├── portal │ │ │ └── configs │ │ │ │ └── designer.json.erb │ │ │ ├── publisher │ │ │ └── config │ │ │ │ └── publisher.json.erb │ │ │ └── store │ │ │ └── config │ │ │ └── store.json.erb │ └── resources │ │ └── email-templates │ │ ├── android-enrollment-invitation.vm.erb │ │ ├── default-enrollment-invitation.vm.erb │ │ ├── user-enrollment.vm.erb │ │ └── user-registration.vm.erb │ └── wso2 │ └── broker │ └── bin │ └── wso2server.sh.erb ├── wso2iot_analytics ├── LICENSE ├── README.md ├── files │ ├── configs │ │ ├── dbscripts │ │ │ └── identity │ │ │ │ ├── h2.sql │ │ │ │ └── mysql.sql │ │ └── repository │ │ │ ├── components │ │ │ ├── dropins │ │ │ │ └── .gitkeep │ │ │ └── lib │ │ │ │ └── .gitkeep │ │ │ └── deployment │ │ │ └── server │ │ │ └── jaggeryapps │ │ │ └── portal │ │ │ ├── controllers │ │ │ └── includes │ │ │ │ └── common-scripts.jag │ │ │ └── extensions │ │ │ └── components │ │ │ └── gadget │ │ │ └── index.js │ ├── patches │ │ └── 4.4.0 │ │ │ └── .gitkeep │ └── system │ │ └── .gitkeep ├── hieradata │ └── dev │ │ └── wso2 │ │ └── wso2iot_analytics │ │ └── pattern-1 │ │ └── default.yaml ├── manifests │ ├── init.pp │ └── params.pp ├── metadata.json ├── package.xml ├── pom.xml ├── templates │ ├── bin │ │ ├── ciphertool.sh.erb │ │ ├── load-spark-env-vars.sh.erb │ │ └── wso2server.sh.erb │ ├── password-tmp.erb │ └── repository │ │ ├── conf │ │ ├── analytics │ │ │ └── spark │ │ │ │ └── spark-defaults.conf.erb │ │ ├── axis2 │ │ │ └── axis2.xml.erb │ │ ├── carbon.xml.erb │ │ ├── datasources │ │ │ ├── analytics-datasources.xml.erb │ │ │ ├── master-datasources.xml.erb │ │ │ └── metrics-datasources.xml.erb │ │ ├── etc │ │ │ └── websocket-validation.xml.erb │ │ ├── event-processor.xml.erb │ │ ├── identity │ │ │ └── identity.xml.erb │ │ ├── registry.xml.erb │ │ ├── security │ │ │ ├── authenticators.xml.erb │ │ │ ├── cipher-text.properties.erb │ │ │ └── cipher-tool.properties.erb │ │ ├── tomcat │ │ │ └── catalina-server.xml.erb │ │ └── user-mgt.xml.erb │ │ └── deployment │ │ └── server │ │ └── jaggeryapps │ │ └── portal │ │ └── configs │ │ └── designer.json.erb └── vagrant-samples │ └── wso2iot_analytics-default.config.yaml ├── wso2iot_broker ├── LICENSE ├── README.md ├── files │ ├── configs │ │ └── repository │ │ │ └── components │ │ │ ├── dropins │ │ │ └── .gitkeep │ │ │ └── lib │ │ │ └── .gitkeep │ ├── patches │ │ └── 4.4.0 │ │ │ └── .gitkeep │ └── system │ │ └── .gitkeep ├── hieradata │ └── dev │ │ └── wso2 │ │ └── wso2iot_broker │ │ └── pattern-1 │ │ └── default.yaml ├── manifests │ ├── init.pp │ └── params.pp ├── metadata.json ├── package.xml ├── pom.xml ├── templates │ ├── bin │ │ ├── ciphertool.sh.erb │ │ └── wso2server.sh.erb │ ├── password-tmp.erb │ └── repository │ │ └── conf │ │ ├── axis2 │ │ └── axis2.xml.erb │ │ ├── broker.xml.erb │ │ ├── carbon.xml.erb │ │ ├── data-bridge │ │ └── data-agent-config.xml.erb │ │ ├── datasources │ │ ├── master-datasources.xml.erb │ │ └── metrics-datasources.xml.erb │ │ ├── identity │ │ └── identity.xml.erb │ │ ├── registry.xml.erb │ │ ├── security │ │ ├── authenticators.xml.erb │ │ ├── cipher-text.properties.erb │ │ └── cipher-tool.properties.erb │ │ ├── tomcat │ │ └── catalina-server.xml.erb │ │ └── user-mgt.xml.erb └── vagrant-samples │ └── wso2iot_broker-default.config.yaml └── wso2iot_core ├── LICENSE ├── README.md ├── files ├── configs │ └── repository │ │ └── components │ │ ├── dropins │ │ └── .gitkeep │ │ └── lib │ │ └── .gitkeep ├── patches │ └── 4.4.0 │ │ └── .gitkeep └── system │ └── .gitkeep ├── hieradata └── dev │ └── wso2 │ └── wso2iot_core │ └── pattern-1 │ └── default.yaml ├── manifests ├── init.pp └── params.pp ├── metadata.json ├── package.xml ├── pom.xml ├── templates ├── bin │ ├── ciphertool.sh.erb │ └── wso2server.sh.erb ├── password-tmp.erb └── repository │ └── conf │ ├── axis2 │ └── axis2.xml.erb │ ├── carbon.xml.erb │ ├── datasources │ └── master-datasources.xml.erb │ ├── registry.xml.erb │ ├── security │ ├── authenticators.xml.erb │ ├── cipher-text.properties.erb │ └── cipher-tool.properties.erb │ ├── tomcat │ └── catalina-server.xml.erb │ └── user-mgt.xml.erb └── vagrant-samples └── wso2iot_core-default.config.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/.pmtignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # puppet-iot -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /wso2iot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/README.md -------------------------------------------------------------------------------- /wso2iot/files/configs/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot/files/configs/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot/files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/default.yaml -------------------------------------------------------------------------------- /wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/device-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/device-backend.yaml -------------------------------------------------------------------------------- /wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/device-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/device-manager.yaml -------------------------------------------------------------------------------- /wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/iot-broker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/hieradata/dev/wso2/wso2iot/pattern-0/iot-broker.yaml -------------------------------------------------------------------------------- /wso2iot/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/manifests/init.pp -------------------------------------------------------------------------------- /wso2iot/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/metadata.json -------------------------------------------------------------------------------- /wso2iot/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/package.xml -------------------------------------------------------------------------------- /wso2iot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/pom.xml -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/bin/broker.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/bin/broker.sh.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/bin/iot-server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/bin/iot-server.sh.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/api-manager.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/api-manager.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/apim-integration.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/apim-integration.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/app-manager.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/app-manager.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/carbon.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/cdm-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/cdm-config.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/certificate-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/certificate-config.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/datasources/android-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/datasources/android-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/datasources/cdm-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/datasources/cdm-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/datasources/ios-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/datasources/ios-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/datasources/windows-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/datasources/windows-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/etc/webapp-authenticator-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/etc/webapp-authenticator-config.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/identity/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/identity/identity.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/ios-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/ios-config.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/registry.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/tenant-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/tenant-mgt.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/password-tmp.erb: -------------------------------------------------------------------------------- 1 | <%= @key_store_password %> -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/devicetypes/android.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/devicetypes/android.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/devicetypes/ios.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/devicetypes/ios.xml.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/android-web-agent/app/conf/config.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/android-web-agent/app/conf/config.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/config.json -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/app-conf.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/app-conf.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/config.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/config.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/toplink-menu.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/devicemgt/app/conf/toplink-menu.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/ios-web-agent/app/conf/config.json.back.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/ios-web-agent/app/conf/config.json.back.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/ios-web-agent/app/conf/config.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/ios-web-agent/app/conf/config.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/portal/configs/designer.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/portal/configs/designer.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/publisher/config/publisher.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/publisher/config/publisher.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/store/config/store.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/deployment/server/jaggeryapps/store/config/store.json.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/resources/email-templates/android-enrollment-invitation.vm.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/resources/email-templates/android-enrollment-invitation.vm.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/resources/email-templates/default-enrollment-invitation.vm.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/resources/email-templates/default-enrollment-invitation.vm.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/resources/email-templates/user-enrollment.vm.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/resources/email-templates/user-enrollment.vm.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/repository/resources/email-templates/user-registration.vm.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/repository/resources/email-templates/user-registration.vm.erb -------------------------------------------------------------------------------- /wso2iot/templates/3.1.0/wso2/broker/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot/templates/3.1.0/wso2/broker/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /wso2iot_analytics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/LICENSE -------------------------------------------------------------------------------- /wso2iot_analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/README.md -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/dbscripts/identity/h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/files/configs/dbscripts/identity/h2.sql -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/dbscripts/identity/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/files/configs/dbscripts/identity/mysql.sql -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/repository/components/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/repository/components/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/repository/deployment/server/jaggeryapps/portal/controllers/includes/common-scripts.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/files/configs/repository/deployment/server/jaggeryapps/portal/controllers/includes/common-scripts.jag -------------------------------------------------------------------------------- /wso2iot_analytics/files/configs/repository/deployment/server/jaggeryapps/portal/extensions/components/gadget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/files/configs/repository/deployment/server/jaggeryapps/portal/extensions/components/gadget/index.js -------------------------------------------------------------------------------- /wso2iot_analytics/files/patches/4.4.0/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_analytics/files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_analytics/hieradata/dev/wso2/wso2iot_analytics/pattern-1/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/hieradata/dev/wso2/wso2iot_analytics/pattern-1/default.yaml -------------------------------------------------------------------------------- /wso2iot_analytics/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/manifests/init.pp -------------------------------------------------------------------------------- /wso2iot_analytics/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/manifests/params.pp -------------------------------------------------------------------------------- /wso2iot_analytics/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/metadata.json -------------------------------------------------------------------------------- /wso2iot_analytics/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/package.xml -------------------------------------------------------------------------------- /wso2iot_analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/pom.xml -------------------------------------------------------------------------------- /wso2iot_analytics/templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/bin/load-spark-env-vars.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/bin/load-spark-env-vars.sh.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/password-tmp.erb: -------------------------------------------------------------------------------- 1 | <%= @key_store_password %> -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/analytics/spark/spark-defaults.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/analytics/spark/spark-defaults.conf.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/datasources/analytics-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/datasources/analytics-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/datasources/metrics-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/datasources/metrics-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/etc/websocket-validation.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/etc/websocket-validation.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/event-processor.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/event-processor.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/identity/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/identity/identity.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /wso2iot_analytics/templates/repository/deployment/server/jaggeryapps/portal/configs/designer.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/templates/repository/deployment/server/jaggeryapps/portal/configs/designer.json.erb -------------------------------------------------------------------------------- /wso2iot_analytics/vagrant-samples/wso2iot_analytics-default.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_analytics/vagrant-samples/wso2iot_analytics-default.config.yaml -------------------------------------------------------------------------------- /wso2iot_broker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/LICENSE -------------------------------------------------------------------------------- /wso2iot_broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/README.md -------------------------------------------------------------------------------- /wso2iot_broker/files/configs/repository/components/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_broker/files/configs/repository/components/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_broker/files/patches/4.4.0/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_broker/files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_broker/hieradata/dev/wso2/wso2iot_broker/pattern-1/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/hieradata/dev/wso2/wso2iot_broker/pattern-1/default.yaml -------------------------------------------------------------------------------- /wso2iot_broker/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/manifests/init.pp -------------------------------------------------------------------------------- /wso2iot_broker/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/manifests/params.pp -------------------------------------------------------------------------------- /wso2iot_broker/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/metadata.json -------------------------------------------------------------------------------- /wso2iot_broker/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/package.xml -------------------------------------------------------------------------------- /wso2iot_broker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/pom.xml -------------------------------------------------------------------------------- /wso2iot_broker/templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/password-tmp.erb: -------------------------------------------------------------------------------- 1 | <%= @key_store_password %> -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/broker.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/broker.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/data-bridge/data-agent-config.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/data-bridge/data-agent-config.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/datasources/metrics-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/datasources/metrics-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/identity/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/identity/identity.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/templates/repository/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /wso2iot_broker/vagrant-samples/wso2iot_broker-default.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_broker/vagrant-samples/wso2iot_broker-default.config.yaml -------------------------------------------------------------------------------- /wso2iot_core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/LICENSE -------------------------------------------------------------------------------- /wso2iot_core/README.md: -------------------------------------------------------------------------------- 1 | # puppet-iot -------------------------------------------------------------------------------- /wso2iot_core/files/configs/repository/components/dropins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_core/files/configs/repository/components/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_core/files/patches/4.4.0/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_core/files/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wso2iot_core/hieradata/dev/wso2/wso2iot_core/pattern-1/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/hieradata/dev/wso2/wso2iot_core/pattern-1/default.yaml -------------------------------------------------------------------------------- /wso2iot_core/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/manifests/init.pp -------------------------------------------------------------------------------- /wso2iot_core/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/manifests/params.pp -------------------------------------------------------------------------------- /wso2iot_core/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/metadata.json -------------------------------------------------------------------------------- /wso2iot_core/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/package.xml -------------------------------------------------------------------------------- /wso2iot_core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/pom.xml -------------------------------------------------------------------------------- /wso2iot_core/templates/bin/ciphertool.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/bin/ciphertool.sh.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/password-tmp.erb: -------------------------------------------------------------------------------- 1 | <%= @key_store_password %> -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/security/cipher-text.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/security/cipher-text.properties.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/security/cipher-tool.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/security/cipher-tool.properties.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/templates/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/templates/repository/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /wso2iot_core/vagrant-samples/wso2iot_core-default.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/puppet-iot/HEAD/wso2iot_core/vagrant-samples/wso2iot_core-default.config.yaml --------------------------------------------------------------------------------