├── .gitignore ├── LICENSE ├── README.md ├── issue_template.md ├── modules └── apim │ ├── files │ └── repository │ │ └── components │ │ └── lib │ │ └── mysql-connector-java-5.1.41-bin.jar │ ├── manifests │ ├── custom.pp │ ├── init.pp │ └── params.pp │ └── templates │ └── carbon-home │ ├── bin │ └── wso2server.sh.erb │ └── repository │ ├── conf │ ├── api-manager.xml.erb │ ├── axis2 │ │ └── axis2.xml.erb │ ├── carbon.xml.erb │ ├── datasources │ │ └── master-datasources.xml.erb │ ├── identity │ │ └── identity.xml.erb │ ├── registry.xml.erb │ ├── security │ │ └── authenticators.xml.erb │ ├── tomcat │ │ └── catalina-server.xml.erb │ └── user-mgt.xml.erb │ └── deployment │ └── server │ └── jaggeryapps │ └── store │ └── site │ └── conf │ └── site.json.erb └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/README.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/issue_template.md -------------------------------------------------------------------------------- /modules/apim/files/repository/components/lib/mysql-connector-java-5.1.41-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/files/repository/components/lib/mysql-connector-java-5.1.41-bin.jar -------------------------------------------------------------------------------- /modules/apim/manifests/custom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/manifests/custom.pp -------------------------------------------------------------------------------- /modules/apim/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/manifests/init.pp -------------------------------------------------------------------------------- /modules/apim/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/manifests/params.pp -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/bin/wso2server.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/bin/wso2server.sh.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/api-manager.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/api-manager.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/carbon.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/datasources/master-datasources.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/datasources/master-datasources.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/identity/identity.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/identity/identity.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/registry.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/security/authenticators.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/security/authenticators.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/tomcat/catalina-server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/tomcat/catalina-server.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /modules/apim/templates/carbon-home/repository/deployment/server/jaggeryapps/store/site/conf/site.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/modules/apim/templates/carbon-home/repository/deployment/server/jaggeryapps/store/site/conf/site.json.erb -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/aws-cicd-apim-configurations/HEAD/pull_request_template.md --------------------------------------------------------------------------------