├── .appveyor.yml ├── .checkov.yaml ├── .circleci └── config.yml ├── .cirrus.yml ├── .concourse.yml ├── .drone.yml ├── .editorconfig ├── .envrc ├── .envrc-python ├── .flake8 ├── .github ├── CODEOWNERS └── workflows │ ├── autoinstall-user-data.yaml │ ├── checkov.yaml │ ├── codeowners.yaml │ ├── fork-sync.yaml │ ├── fork-update-pr.yaml │ ├── grype.yaml │ ├── json.yaml │ ├── kickstart.yaml │ ├── kics.yaml │ ├── markdown.yaml │ ├── packer.yaml │ ├── preseed.yaml │ ├── semgrep-cloud.yaml │ ├── semgrep.yaml │ ├── shellcheck.yaml │ ├── trivy.yaml │ ├── validate.yaml │ ├── xml.yaml │ └── yaml.yaml ├── .gitlab-ci.yml ├── .gitmodules ├── .gocd.yml ├── .hadolint.yaml ├── .mdl.rb ├── .mdlrc ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .pylintrc ├── .semaphore └── semaphore.yml ├── .sonarlint └── connectedMode.json ├── .swiftlint.yml ├── .travis.yml ├── .validate.env ├── Appfile ├── Dockerfile ├── FastAPI.py ├── Fastfile ├── Gemfile ├── Jenkinsfile ├── LICENSE ├── Makefile ├── Modulefile ├── README.md ├── Vagrantfile ├── action.yaml ├── anaconda-ks.cfg ├── ansible-inventory ├── ansible-inventory.ini ├── api.py ├── autoinstall-user-data ├── aws_athena_cloudtrail_ddl.sql ├── aws_policy_require_mfa.json ├── aws_security_group.json ├── azure-pipeline-docker-image-cleanup.yml ├── azure-pipeline-template.yml ├── azure-pipelines.yml ├── bitbucket-pipelines.yml ├── circleci-config.yml ├── clair.yaml ├── cloudbuild-golang.yaml ├── cloudbuild-ubuntu.yaml ├── cloudbuild.yaml ├── codefresh.yml ├── diagram.d2 ├── diagram.mmd ├── diagram.py ├── docker-compose.yml ├── ec2.yaml ├── ecs_cluster.json ├── ecs_service.json ├── ecs_task_definition.json ├── eksctl-update-addon.yaml ├── eksctl.yaml ├── fastlane ├── Appfile └── Fastfile ├── flyscrape.config.js ├── gcp_cloudbuild.yaml ├── gcp_deployment_manager.yaml ├── gcp_deployment_manager_instance_template.yaml.j2 ├── github-action.yaml ├── github-workflow.yaml ├── gradle.properties ├── gridnode.m4 ├── helmfile.yaml ├── infracost.yml ├── inventory ├── inventory.ini ├── ixguard.yaml ├── jenkins.groovy ├── k3d.yaml ├── k6.js ├── kickstart.cfg ├── kics.config ├── kind.yaml ├── ks.cfg ├── lambda.py ├── lambda.yaml ├── lambda_assume_role_policy.json ├── lambda_execution_policy.json ├── lambda_func.yaml ├── lambda_s3_sns.py ├── lambda_sns.py ├── meta-data ├── mkdocs.yml ├── nginx-cloudflare.conf ├── packer.hcl ├── packer.pkr.hcl ├── pom.xml ├── preseed.cfg ├── prometheus.yml ├── s3_bucket_lambda_trigger.json ├── s3_bucket_policy_http_disallow.json ├── semaphore.yml ├── settings.gradle ├── setup ├── ci_bootstrap.sh └── ci_git_set_dir_safe.sh ├── skaffold.yaml ├── snippet.license ├── snippet.message ├── snippet.vim_tags ├── sonar-project.properties ├── template-old-plugin.pl ├── template-plugin.pl ├── template.asp ├── template.assembly.sbt ├── template.bat ├── template.c ├── template.d2 ├── template.exp ├── template.expect ├── template.file ├── template.gnuplot ├── template.go ├── template.gp ├── template.gplot ├── template.gradle ├── template.groovy ├── template.gsh ├── template.gv ├── template.java ├── template.jrb ├── template.js ├── template.jsh ├── template.jy ├── template.lua ├── template.mapred.Driver.java ├── template.mapred.Mapper.java ├── template.mapred.Reducer.java ├── template.mmd ├── template.php ├── template.pig ├── template.pkr.hcl ├── template.pkrvars.hcl ├── template.pl ├── template.pl.m4 ├── template.pl.pod.m4 ├── template.pm ├── template.pm.m4 ├── template.pom.xml ├── template.pp ├── template.ppmod ├── Modulefile ├── README ├── manifests │ ├── init.pp │ └── params.pp ├── spec │ └── spec_helper.rb └── tests │ └── init.pp ├── template.py ├── template.rb ├── template.sbt ├── template.scala ├── template.scpt ├── template.sec.m4 ├── template.service ├── template.sh ├── template.spark.scala ├── template.spark.scala.old ├── template.sql ├── template.standalone.pl ├── template.t ├── template.vbs ├── template.winfile ├── template.xml ├── template.yaml ├── template.yml ├── template.zsh ├── user-data └── workflow.yaml /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.checkov.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | ../circleci-config.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.concourse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.concourse.yml -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.drone.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.envrc -------------------------------------------------------------------------------- /.envrc-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.envrc-python -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/autoinstall-user-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/autoinstall-user-data.yaml -------------------------------------------------------------------------------- /.github/workflows/checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/checkov.yaml -------------------------------------------------------------------------------- /.github/workflows/codeowners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/codeowners.yaml -------------------------------------------------------------------------------- /.github/workflows/fork-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/fork-sync.yaml -------------------------------------------------------------------------------- /.github/workflows/fork-update-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/fork-update-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/grype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/grype.yaml -------------------------------------------------------------------------------- /.github/workflows/json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/json.yaml -------------------------------------------------------------------------------- /.github/workflows/kickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/kickstart.yaml -------------------------------------------------------------------------------- /.github/workflows/kics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/kics.yaml -------------------------------------------------------------------------------- /.github/workflows/markdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/markdown.yaml -------------------------------------------------------------------------------- /.github/workflows/packer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/packer.yaml -------------------------------------------------------------------------------- /.github/workflows/preseed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/preseed.yaml -------------------------------------------------------------------------------- /.github/workflows/semgrep-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/semgrep-cloud.yaml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/semgrep.yaml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/shellcheck.yaml -------------------------------------------------------------------------------- /.github/workflows/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/trivy.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.github/workflows/xml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/xml.yaml -------------------------------------------------------------------------------- /.github/workflows/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.github/workflows/yaml.yaml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gocd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.gocd.yml -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.mdl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.mdl.rb -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.mdlrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.pylintrc -------------------------------------------------------------------------------- /.semaphore/semaphore.yml: -------------------------------------------------------------------------------- 1 | ../semaphore.yml -------------------------------------------------------------------------------- /.sonarlint/connectedMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.sonarlint/connectedMode.json -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /.validate.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/.validate.env -------------------------------------------------------------------------------- /Appfile: -------------------------------------------------------------------------------- 1 | fastlane/Appfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/Dockerfile -------------------------------------------------------------------------------- /FastAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/FastAPI.py -------------------------------------------------------------------------------- /Fastfile: -------------------------------------------------------------------------------- 1 | fastlane/Fastfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/Gemfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | jenkins/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/Makefile -------------------------------------------------------------------------------- /Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/Modulefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/Vagrantfile -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- 1 | github-actions/action.yaml -------------------------------------------------------------------------------- /anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/anaconda-ks.cfg -------------------------------------------------------------------------------- /ansible-inventory: -------------------------------------------------------------------------------- 1 | ansible-inventory.ini -------------------------------------------------------------------------------- /ansible-inventory.ini: -------------------------------------------------------------------------------- 1 | ansible-templates/inventory.ini -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/api.py -------------------------------------------------------------------------------- /autoinstall-user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/autoinstall-user-data -------------------------------------------------------------------------------- /aws_athena_cloudtrail_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/aws_athena_cloudtrail_ddl.sql -------------------------------------------------------------------------------- /aws_policy_require_mfa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/aws_policy_require_mfa.json -------------------------------------------------------------------------------- /aws_security_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/aws_security_group.json -------------------------------------------------------------------------------- /azure-pipeline-docker-image-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/azure-pipeline-docker-image-cleanup.yml -------------------------------------------------------------------------------- /azure-pipeline-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/azure-pipeline-template.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /circleci-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/circleci-config.yml -------------------------------------------------------------------------------- /clair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/clair.yaml -------------------------------------------------------------------------------- /cloudbuild-golang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/cloudbuild-golang.yaml -------------------------------------------------------------------------------- /cloudbuild-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/cloudbuild-ubuntu.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /codefresh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/codefresh.yml -------------------------------------------------------------------------------- /diagram.d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/diagram.d2 -------------------------------------------------------------------------------- /diagram.mmd: -------------------------------------------------------------------------------- 1 | template.mmd -------------------------------------------------------------------------------- /diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/diagram.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ec2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/ec2.yaml -------------------------------------------------------------------------------- /ecs_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/ecs_cluster.json -------------------------------------------------------------------------------- /ecs_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/ecs_service.json -------------------------------------------------------------------------------- /ecs_task_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/ecs_task_definition.json -------------------------------------------------------------------------------- /eksctl-update-addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/eksctl-update-addon.yaml -------------------------------------------------------------------------------- /eksctl.yaml: -------------------------------------------------------------------------------- 1 | kubernetes-templates/eksctl.yaml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /flyscrape.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/flyscrape.config.js -------------------------------------------------------------------------------- /gcp_cloudbuild.yaml: -------------------------------------------------------------------------------- 1 | cloudbuild.yaml -------------------------------------------------------------------------------- /gcp_deployment_manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/gcp_deployment_manager.yaml -------------------------------------------------------------------------------- /gcp_deployment_manager_instance_template.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/gcp_deployment_manager_instance_template.yaml.j2 -------------------------------------------------------------------------------- /github-action.yaml: -------------------------------------------------------------------------------- 1 | github-actions/action.yaml -------------------------------------------------------------------------------- /github-workflow.yaml: -------------------------------------------------------------------------------- 1 | github-actions/main.yaml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/gradle.properties -------------------------------------------------------------------------------- /gridnode.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/gridnode.m4 -------------------------------------------------------------------------------- /helmfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/helmfile.yaml -------------------------------------------------------------------------------- /infracost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/infracost.yml -------------------------------------------------------------------------------- /inventory: -------------------------------------------------------------------------------- 1 | ansible-inventory.ini -------------------------------------------------------------------------------- /inventory.ini: -------------------------------------------------------------------------------- 1 | ansible-inventory.ini -------------------------------------------------------------------------------- /ixguard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/ixguard.yaml -------------------------------------------------------------------------------- /jenkins.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/jenkins.groovy -------------------------------------------------------------------------------- /k3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/k3d.yaml -------------------------------------------------------------------------------- /k6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/k6.js -------------------------------------------------------------------------------- /kickstart.cfg: -------------------------------------------------------------------------------- 1 | anaconda-ks.cfg -------------------------------------------------------------------------------- /kics.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/kics.config -------------------------------------------------------------------------------- /kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/kind.yaml -------------------------------------------------------------------------------- /ks.cfg: -------------------------------------------------------------------------------- 1 | anaconda-ks.cfg -------------------------------------------------------------------------------- /lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda.py -------------------------------------------------------------------------------- /lambda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda.yaml -------------------------------------------------------------------------------- /lambda_assume_role_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda_assume_role_policy.json -------------------------------------------------------------------------------- /lambda_execution_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda_execution_policy.json -------------------------------------------------------------------------------- /lambda_func.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda_func.yaml -------------------------------------------------------------------------------- /lambda_s3_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda_s3_sns.py -------------------------------------------------------------------------------- /lambda_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/lambda_sns.py -------------------------------------------------------------------------------- /meta-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/meta-data -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nginx-cloudflare.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/nginx-cloudflare.conf -------------------------------------------------------------------------------- /packer.hcl: -------------------------------------------------------------------------------- 1 | template.pkr.hcl -------------------------------------------------------------------------------- /packer.pkr.hcl: -------------------------------------------------------------------------------- 1 | template.pkr.hcl -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/pom.xml -------------------------------------------------------------------------------- /preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/preseed.cfg -------------------------------------------------------------------------------- /prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/prometheus.yml -------------------------------------------------------------------------------- /s3_bucket_lambda_trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/s3_bucket_lambda_trigger.json -------------------------------------------------------------------------------- /s3_bucket_policy_http_disallow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/s3_bucket_policy_http_disallow.json -------------------------------------------------------------------------------- /semaphore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/semaphore.yml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'harisekhon-templates' 2 | -------------------------------------------------------------------------------- /setup/ci_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/setup/ci_bootstrap.sh -------------------------------------------------------------------------------- /setup/ci_git_set_dir_safe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/setup/ci_git_set_dir_safe.sh -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /snippet.license: -------------------------------------------------------------------------------- 1 | License: see accompanying Hari Sekhon LICENSE file 2 | -------------------------------------------------------------------------------- /snippet.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/snippet.message -------------------------------------------------------------------------------- /snippet.vim_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/snippet.vim_tags -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /template-old-plugin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template-old-plugin.pl -------------------------------------------------------------------------------- /template-plugin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template-plugin.pl -------------------------------------------------------------------------------- /template.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.asp -------------------------------------------------------------------------------- /template.assembly.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.assembly.sbt -------------------------------------------------------------------------------- /template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.bat -------------------------------------------------------------------------------- /template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.c -------------------------------------------------------------------------------- /template.d2: -------------------------------------------------------------------------------- 1 | diagram.d2 -------------------------------------------------------------------------------- /template.exp: -------------------------------------------------------------------------------- 1 | template.expect -------------------------------------------------------------------------------- /template.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.expect -------------------------------------------------------------------------------- /template.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.file -------------------------------------------------------------------------------- /template.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.gnuplot -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.go -------------------------------------------------------------------------------- /template.gp: -------------------------------------------------------------------------------- 1 | template.gnuplot -------------------------------------------------------------------------------- /template.gplot: -------------------------------------------------------------------------------- 1 | template.gnuplot -------------------------------------------------------------------------------- /template.gradle: -------------------------------------------------------------------------------- 1 | build.gradle -------------------------------------------------------------------------------- /template.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.groovy -------------------------------------------------------------------------------- /template.gsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.gsh -------------------------------------------------------------------------------- /template.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.gv -------------------------------------------------------------------------------- /template.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.java -------------------------------------------------------------------------------- /template.jrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.jrb -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.js -------------------------------------------------------------------------------- /template.jsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.jsh -------------------------------------------------------------------------------- /template.jy: -------------------------------------------------------------------------------- 1 | template.py -------------------------------------------------------------------------------- /template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.lua -------------------------------------------------------------------------------- /template.mapred.Driver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.mapred.Driver.java -------------------------------------------------------------------------------- /template.mapred.Mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.mapred.Mapper.java -------------------------------------------------------------------------------- /template.mapred.Reducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.mapred.Reducer.java -------------------------------------------------------------------------------- /template.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.mmd -------------------------------------------------------------------------------- /template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.php -------------------------------------------------------------------------------- /template.pig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pig -------------------------------------------------------------------------------- /template.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pkr.hcl -------------------------------------------------------------------------------- /template.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pkrvars.hcl -------------------------------------------------------------------------------- /template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pl -------------------------------------------------------------------------------- /template.pl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pl.m4 -------------------------------------------------------------------------------- /template.pl.pod.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pl.pod.m4 -------------------------------------------------------------------------------- /template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pm -------------------------------------------------------------------------------- /template.pm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pm.m4 -------------------------------------------------------------------------------- /template.pom.xml: -------------------------------------------------------------------------------- 1 | pom.xml -------------------------------------------------------------------------------- /template.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.pp -------------------------------------------------------------------------------- /template.ppmod/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.ppmod/Modulefile -------------------------------------------------------------------------------- /template.ppmod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.ppmod/README -------------------------------------------------------------------------------- /template.ppmod/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.ppmod/manifests/init.pp -------------------------------------------------------------------------------- /template.ppmod/manifests/params.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template.ppmod/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.ppmod/spec/spec_helper.rb -------------------------------------------------------------------------------- /template.ppmod/tests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.ppmod/tests/init.pp -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.py -------------------------------------------------------------------------------- /template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.rb -------------------------------------------------------------------------------- /template.sbt: -------------------------------------------------------------------------------- 1 | build.sbt -------------------------------------------------------------------------------- /template.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.scala -------------------------------------------------------------------------------- /template.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.scpt -------------------------------------------------------------------------------- /template.sec.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.sec.m4 -------------------------------------------------------------------------------- /template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.service -------------------------------------------------------------------------------- /template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.sh -------------------------------------------------------------------------------- /template.spark.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.spark.scala -------------------------------------------------------------------------------- /template.spark.scala.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.spark.scala.old -------------------------------------------------------------------------------- /template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.sql -------------------------------------------------------------------------------- /template.standalone.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.standalone.pl -------------------------------------------------------------------------------- /template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.t -------------------------------------------------------------------------------- /template.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.vbs -------------------------------------------------------------------------------- /template.winfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.winfile -------------------------------------------------------------------------------- /template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.xml -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.yaml -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- 1 | template.yaml -------------------------------------------------------------------------------- /template.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HariSekhon/Templates/HEAD/template.zsh -------------------------------------------------------------------------------- /user-data: -------------------------------------------------------------------------------- 1 | autoinstall-user-data -------------------------------------------------------------------------------- /workflow.yaml: -------------------------------------------------------------------------------- 1 | github-actions/main.yaml --------------------------------------------------------------------------------