├── .envrc ├── .gitattributes ├── .github └── workflows │ ├── check_build.yaml │ ├── check_prose.yaml │ ├── deploy.yaml │ └── pre_commit.yaml ├── .gitignore ├── .markdownlintrc ├── .node-version ├── .pre-commit-config.yaml ├── .vale.ini ├── Brewfile.local ├── CONTRIBUTING.md ├── LICENSE-Apache-2.0.txt ├── LICENSE-CCA-4.0.txt ├── README.md ├── babel.config.js ├── bin └── prereqs ├── docs ├── README.md ├── appeng │ ├── README.md │ ├── adrs │ │ ├── 0001-use-typescript.md │ │ ├── 0002-distributed-tracing.md │ │ ├── 0003-open-source-application-code.md │ │ ├── 0004-postgresql-as-relational-store.md │ │ ├── 0005-javascript-dependency-management.mdx │ │ └── README.md │ ├── decision-process.md │ ├── decision-values.md │ └── team-charter.md ├── compliance.md ├── developing │ ├── README.md │ ├── bugs │ │ └── README.md │ ├── code-reviews │ │ ├── README.md │ │ ├── great-code-reviews.md │ │ └── pull-request-best-practices.md │ ├── command-line-tools │ │ ├── HOW2GORELEASER.md │ │ ├── README.md │ │ ├── direnv.md │ │ └── docker.md │ ├── configuration │ │ └── README.md │ ├── cycle │ │ └── README.md │ ├── eid │ │ └── README.md │ ├── growth │ │ └── README.md │ ├── healthcheck │ │ └── README.md │ ├── helpful-tools │ │ ├── README.md │ │ └── wiremock.md │ ├── languages │ │ ├── BASH.md │ │ ├── GO.md │ │ ├── README.md │ │ ├── python │ │ │ ├── README.md │ │ │ ├── installation.md │ │ │ ├── linters_and_checkers.md │ │ │ └── project_setup.md │ │ └── ruby │ │ │ ├── README.md │ │ │ └── installation.md │ ├── learning │ │ ├── README.md │ │ ├── asking_for_help.md │ │ ├── continuous_delivery.md │ │ ├── crucial_conversations.md │ │ ├── goal.md │ │ ├── radical_candor.md │ │ ├── release_it.md │ │ └── the_effective_engineer.md │ ├── nix │ │ ├── HOWTO.md │ │ └── README.md │ ├── open-source │ │ ├── README.md │ │ └── intent.md │ ├── pairing │ │ ├── README.md │ │ ├── etiquette.md │ │ ├── giving-feedback.md │ │ ├── meeting-attendance.md │ │ ├── pairing-framework │ │ │ ├── README.md │ │ │ ├── formal-pairing.md │ │ │ ├── mentoring-pairing.md │ │ │ ├── planning-pairing.md │ │ │ └── support-pairing.md │ │ ├── resources.md │ │ ├── what-doesnt-work-well.md │ │ ├── what-works-well.md │ │ └── why-pair.md │ ├── slack │ │ ├── README.md │ │ └── imgs │ │ │ ├── slack_auto_do_not_disturb.png │ │ │ ├── slack_keywords.png │ │ │ └── slack_preferences.png │ ├── technical-design │ │ ├── README.md │ │ └── design-document-template.md │ └── vcs │ │ ├── README.md │ │ ├── git-repos.md │ │ ├── git-workflow.md │ │ ├── master-to-main.md │ │ └── tools.md ├── documentation │ ├── adr.md │ ├── external-resources.md │ └── intro-to-docs.md ├── incident-response │ ├── README.md │ ├── analysis.md │ ├── external-resources.md │ ├── on-call.md │ ├── overview.md │ ├── retro-template.md │ └── security-incidents.md ├── infrasec │ ├── README.md │ ├── adrs │ │ ├── 0001-tests_in_terraform.md │ │ └── README.md │ ├── alert-providers.md │ ├── ansible │ │ ├── README.md │ │ ├── ansible-primer.md │ │ └── molecule-primer.md │ ├── aws │ │ ├── README.md │ │ ├── aws-organizations.md │ │ ├── govcloud │ │ │ ├── README.md │ │ │ ├── gov-acm.md │ │ │ └── gov-orgs.md │ │ ├── guardduty.md │ │ ├── images │ │ │ ├── doc-sns-topic.png │ │ │ └── sns-info-flow.png │ │ ├── naming.md │ │ ├── org-bootstrap.md │ │ ├── sns-guardduty-alert-integrations.md │ │ ├── sns-topics.md │ │ └── vpcs.md │ ├── book-club │ │ └── README.md │ ├── bootstrap.md │ ├── certs.md │ ├── charter.md │ ├── ci_cd.md │ ├── delivery-pipeline.md │ ├── good-infra.md │ ├── pro-dev.md │ ├── teardown.md │ ├── terraform │ │ ├── README.md │ │ ├── atlantis.md │ │ ├── images │ │ │ ├── circleci_tabs.png │ │ │ ├── draft-release.png │ │ │ └── publish-release.png │ │ ├── naming.md │ │ ├── terraform-import.md │ │ ├── terraform-state-mv.md │ │ └── terratest.md │ └── tutorials │ │ ├── README.md │ │ ├── circle-ci-honeycomb-integrations.md │ │ ├── fix-circleci-integrations.md │ │ ├── images │ │ ├── 1password-empty-field.png │ │ ├── 1password-field-dropdown.png │ │ ├── 1password-otp.png │ │ ├── 1password-scanner-window.png │ │ ├── 1password-transformed-field.png │ │ ├── atlantis_403.png │ │ ├── atlantis_acm1.png │ │ ├── atlantis_alb1.png │ │ ├── atlantis_alb2.png │ │ ├── atlantis_ecs1.png │ │ ├── atlantis_ecs2.png │ │ ├── atlantis_ecs4.png │ │ ├── atlantis_gh1.png │ │ ├── atlantis_lb_bucket.png │ │ ├── atlantis_process1.png │ │ ├── github-2fa.png │ │ ├── github-circleci-checks-repo-access.png │ │ ├── github-commit-circleci-status-check.png │ │ ├── honeycomb-circleci-trace.png │ │ ├── honeycomb-circleci-workflow.png │ │ ├── yubikey-check-keys.png │ │ ├── yubikey-key-import.png │ │ ├── yubikey-otp-error.png │ │ ├── yubikey-select-authenticate.png │ │ └── yubikey-sign-encrypt.png │ │ ├── one-time-passwords.md │ │ ├── your_first_lambda_function.md │ │ ├── yubikey-configuration.mdx │ │ └── yubikey-sso.md ├── leadership │ ├── README.md │ ├── eng-lead │ │ └── README.md │ └── eng-management │ │ └── README.md ├── practices.md ├── templates │ ├── README.md │ ├── adr-appeng.md │ ├── adr-infrasec.md │ ├── subject │ │ └── README.md │ └── topic.md └── web │ ├── README.md │ ├── api │ ├── GraphQL-Design-Guide.md │ ├── README.md │ └── rest-api-design │ │ ├── Concurrency-Control.md │ │ ├── Data-Design.md │ │ ├── Error-Response-Strategy.md │ │ ├── HTTP-Methods.md │ │ ├── README.md │ │ ├── Style-Guide.md │ │ └── URL-Design.md │ ├── browsersupport │ └── README.md │ ├── frontend │ ├── README.md │ ├── architecture.md │ ├── developer-experience.md │ ├── developing-ui.md │ ├── npm.md │ ├── project-checklist.md │ ├── react.md │ ├── testing.md │ ├── typescript.md │ └── validateDOMNesting_error.png │ ├── server │ ├── README.md │ └── go.md │ └── testing │ ├── README.md │ ├── cypress.md │ └── nightwatch.md ├── docusaurus.config.js ├── fresh-brew.local ├── nix ├── default.nix └── update.sh ├── package.json ├── renovate.json ├── sidebars.js ├── src ├── components │ ├── HomepageFeatures.js │ ├── HomepageFeatures.module.css │ └── prism-golang.js ├── css │ └── custom.css ├── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md └── theme │ └── prism-include-languages.js ├── static ├── .nojekyll ├── CNAME └── img │ ├── favicon.ico │ └── truss-icon-light.png ├── utils ├── redirect-adrs.js └── redirect-appeng.js └── vale ├── Styles ├── Repetition.yml └── Spelling.yml └── Vocab └── OSS-Docs ├── accept.txt └── reject.txt /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.github/workflows/check_build.yaml -------------------------------------------------------------------------------- /.github/workflows/check_prose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.github/workflows/check_prose.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/pre_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.github/workflows/pre_commit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18.19.1 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/.vale.ini -------------------------------------------------------------------------------- /Brewfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/Brewfile.local -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/LICENSE-Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSE-CCA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/LICENSE-CCA-4.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/prereqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/bin/prereqs -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/appeng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/README.md -------------------------------------------------------------------------------- /docs/appeng/adrs/0001-use-typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/0001-use-typescript.md -------------------------------------------------------------------------------- /docs/appeng/adrs/0002-distributed-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/0002-distributed-tracing.md -------------------------------------------------------------------------------- /docs/appeng/adrs/0003-open-source-application-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/0003-open-source-application-code.md -------------------------------------------------------------------------------- /docs/appeng/adrs/0004-postgresql-as-relational-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/0004-postgresql-as-relational-store.md -------------------------------------------------------------------------------- /docs/appeng/adrs/0005-javascript-dependency-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/0005-javascript-dependency-management.mdx -------------------------------------------------------------------------------- /docs/appeng/adrs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/adrs/README.md -------------------------------------------------------------------------------- /docs/appeng/decision-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/decision-process.md -------------------------------------------------------------------------------- /docs/appeng/decision-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/decision-values.md -------------------------------------------------------------------------------- /docs/appeng/team-charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/appeng/team-charter.md -------------------------------------------------------------------------------- /docs/compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/compliance.md -------------------------------------------------------------------------------- /docs/developing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/README.md -------------------------------------------------------------------------------- /docs/developing/bugs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/bugs/README.md -------------------------------------------------------------------------------- /docs/developing/code-reviews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/code-reviews/README.md -------------------------------------------------------------------------------- /docs/developing/code-reviews/great-code-reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/code-reviews/great-code-reviews.md -------------------------------------------------------------------------------- /docs/developing/code-reviews/pull-request-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/code-reviews/pull-request-best-practices.md -------------------------------------------------------------------------------- /docs/developing/command-line-tools/HOW2GORELEASER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/command-line-tools/HOW2GORELEASER.md -------------------------------------------------------------------------------- /docs/developing/command-line-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/command-line-tools/README.md -------------------------------------------------------------------------------- /docs/developing/command-line-tools/direnv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/command-line-tools/direnv.md -------------------------------------------------------------------------------- /docs/developing/command-line-tools/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/command-line-tools/docker.md -------------------------------------------------------------------------------- /docs/developing/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/configuration/README.md -------------------------------------------------------------------------------- /docs/developing/cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/cycle/README.md -------------------------------------------------------------------------------- /docs/developing/eid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/eid/README.md -------------------------------------------------------------------------------- /docs/developing/growth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/growth/README.md -------------------------------------------------------------------------------- /docs/developing/healthcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/healthcheck/README.md -------------------------------------------------------------------------------- /docs/developing/helpful-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/helpful-tools/README.md -------------------------------------------------------------------------------- /docs/developing/helpful-tools/wiremock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/helpful-tools/wiremock.md -------------------------------------------------------------------------------- /docs/developing/languages/BASH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/BASH.md -------------------------------------------------------------------------------- /docs/developing/languages/GO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/GO.md -------------------------------------------------------------------------------- /docs/developing/languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/README.md -------------------------------------------------------------------------------- /docs/developing/languages/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/python/README.md -------------------------------------------------------------------------------- /docs/developing/languages/python/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/python/installation.md -------------------------------------------------------------------------------- /docs/developing/languages/python/linters_and_checkers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/python/linters_and_checkers.md -------------------------------------------------------------------------------- /docs/developing/languages/python/project_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/python/project_setup.md -------------------------------------------------------------------------------- /docs/developing/languages/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/ruby/README.md -------------------------------------------------------------------------------- /docs/developing/languages/ruby/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/languages/ruby/installation.md -------------------------------------------------------------------------------- /docs/developing/learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/README.md -------------------------------------------------------------------------------- /docs/developing/learning/asking_for_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/asking_for_help.md -------------------------------------------------------------------------------- /docs/developing/learning/continuous_delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/continuous_delivery.md -------------------------------------------------------------------------------- /docs/developing/learning/crucial_conversations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/crucial_conversations.md -------------------------------------------------------------------------------- /docs/developing/learning/goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/goal.md -------------------------------------------------------------------------------- /docs/developing/learning/radical_candor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/radical_candor.md -------------------------------------------------------------------------------- /docs/developing/learning/release_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/release_it.md -------------------------------------------------------------------------------- /docs/developing/learning/the_effective_engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/learning/the_effective_engineer.md -------------------------------------------------------------------------------- /docs/developing/nix/HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/nix/HOWTO.md -------------------------------------------------------------------------------- /docs/developing/nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/nix/README.md -------------------------------------------------------------------------------- /docs/developing/open-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/open-source/README.md -------------------------------------------------------------------------------- /docs/developing/open-source/intent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/open-source/intent.md -------------------------------------------------------------------------------- /docs/developing/pairing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/README.md -------------------------------------------------------------------------------- /docs/developing/pairing/etiquette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/etiquette.md -------------------------------------------------------------------------------- /docs/developing/pairing/giving-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/giving-feedback.md -------------------------------------------------------------------------------- /docs/developing/pairing/meeting-attendance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/meeting-attendance.md -------------------------------------------------------------------------------- /docs/developing/pairing/pairing-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/pairing-framework/README.md -------------------------------------------------------------------------------- /docs/developing/pairing/pairing-framework/formal-pairing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/pairing-framework/formal-pairing.md -------------------------------------------------------------------------------- /docs/developing/pairing/pairing-framework/mentoring-pairing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/pairing-framework/mentoring-pairing.md -------------------------------------------------------------------------------- /docs/developing/pairing/pairing-framework/planning-pairing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/pairing-framework/planning-pairing.md -------------------------------------------------------------------------------- /docs/developing/pairing/pairing-framework/support-pairing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/pairing-framework/support-pairing.md -------------------------------------------------------------------------------- /docs/developing/pairing/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/resources.md -------------------------------------------------------------------------------- /docs/developing/pairing/what-doesnt-work-well.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/what-doesnt-work-well.md -------------------------------------------------------------------------------- /docs/developing/pairing/what-works-well.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/what-works-well.md -------------------------------------------------------------------------------- /docs/developing/pairing/why-pair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/pairing/why-pair.md -------------------------------------------------------------------------------- /docs/developing/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/slack/README.md -------------------------------------------------------------------------------- /docs/developing/slack/imgs/slack_auto_do_not_disturb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/slack/imgs/slack_auto_do_not_disturb.png -------------------------------------------------------------------------------- /docs/developing/slack/imgs/slack_keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/slack/imgs/slack_keywords.png -------------------------------------------------------------------------------- /docs/developing/slack/imgs/slack_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/slack/imgs/slack_preferences.png -------------------------------------------------------------------------------- /docs/developing/technical-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/technical-design/README.md -------------------------------------------------------------------------------- /docs/developing/technical-design/design-document-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/technical-design/design-document-template.md -------------------------------------------------------------------------------- /docs/developing/vcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/vcs/README.md -------------------------------------------------------------------------------- /docs/developing/vcs/git-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/vcs/git-repos.md -------------------------------------------------------------------------------- /docs/developing/vcs/git-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/vcs/git-workflow.md -------------------------------------------------------------------------------- /docs/developing/vcs/master-to-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/vcs/master-to-main.md -------------------------------------------------------------------------------- /docs/developing/vcs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/developing/vcs/tools.md -------------------------------------------------------------------------------- /docs/documentation/adr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/documentation/adr.md -------------------------------------------------------------------------------- /docs/documentation/external-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/documentation/external-resources.md -------------------------------------------------------------------------------- /docs/documentation/intro-to-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/documentation/intro-to-docs.md -------------------------------------------------------------------------------- /docs/incident-response/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/README.md -------------------------------------------------------------------------------- /docs/incident-response/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/analysis.md -------------------------------------------------------------------------------- /docs/incident-response/external-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/external-resources.md -------------------------------------------------------------------------------- /docs/incident-response/on-call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/on-call.md -------------------------------------------------------------------------------- /docs/incident-response/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/overview.md -------------------------------------------------------------------------------- /docs/incident-response/retro-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/retro-template.md -------------------------------------------------------------------------------- /docs/incident-response/security-incidents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/incident-response/security-incidents.md -------------------------------------------------------------------------------- /docs/infrasec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/README.md -------------------------------------------------------------------------------- /docs/infrasec/adrs/0001-tests_in_terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/adrs/0001-tests_in_terraform.md -------------------------------------------------------------------------------- /docs/infrasec/adrs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/adrs/README.md -------------------------------------------------------------------------------- /docs/infrasec/alert-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/alert-providers.md -------------------------------------------------------------------------------- /docs/infrasec/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/ansible/README.md -------------------------------------------------------------------------------- /docs/infrasec/ansible/ansible-primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/ansible/ansible-primer.md -------------------------------------------------------------------------------- /docs/infrasec/ansible/molecule-primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/ansible/molecule-primer.md -------------------------------------------------------------------------------- /docs/infrasec/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/README.md -------------------------------------------------------------------------------- /docs/infrasec/aws/aws-organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/aws-organizations.md -------------------------------------------------------------------------------- /docs/infrasec/aws/govcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/govcloud/README.md -------------------------------------------------------------------------------- /docs/infrasec/aws/govcloud/gov-acm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/govcloud/gov-acm.md -------------------------------------------------------------------------------- /docs/infrasec/aws/govcloud/gov-orgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/govcloud/gov-orgs.md -------------------------------------------------------------------------------- /docs/infrasec/aws/guardduty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/guardduty.md -------------------------------------------------------------------------------- /docs/infrasec/aws/images/doc-sns-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/images/doc-sns-topic.png -------------------------------------------------------------------------------- /docs/infrasec/aws/images/sns-info-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/images/sns-info-flow.png -------------------------------------------------------------------------------- /docs/infrasec/aws/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/naming.md -------------------------------------------------------------------------------- /docs/infrasec/aws/org-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/org-bootstrap.md -------------------------------------------------------------------------------- /docs/infrasec/aws/sns-guardduty-alert-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/sns-guardduty-alert-integrations.md -------------------------------------------------------------------------------- /docs/infrasec/aws/sns-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/sns-topics.md -------------------------------------------------------------------------------- /docs/infrasec/aws/vpcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/aws/vpcs.md -------------------------------------------------------------------------------- /docs/infrasec/book-club/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/book-club/README.md -------------------------------------------------------------------------------- /docs/infrasec/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/bootstrap.md -------------------------------------------------------------------------------- /docs/infrasec/certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/certs.md -------------------------------------------------------------------------------- /docs/infrasec/charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/charter.md -------------------------------------------------------------------------------- /docs/infrasec/ci_cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/ci_cd.md -------------------------------------------------------------------------------- /docs/infrasec/delivery-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/delivery-pipeline.md -------------------------------------------------------------------------------- /docs/infrasec/good-infra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/good-infra.md -------------------------------------------------------------------------------- /docs/infrasec/pro-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/pro-dev.md -------------------------------------------------------------------------------- /docs/infrasec/teardown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/teardown.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/README.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/atlantis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/atlantis.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/images/circleci_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/images/circleci_tabs.png -------------------------------------------------------------------------------- /docs/infrasec/terraform/images/draft-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/images/draft-release.png -------------------------------------------------------------------------------- /docs/infrasec/terraform/images/publish-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/images/publish-release.png -------------------------------------------------------------------------------- /docs/infrasec/terraform/naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/naming.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/terraform-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/terraform-import.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/terraform-state-mv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/terraform-state-mv.md -------------------------------------------------------------------------------- /docs/infrasec/terraform/terratest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/terraform/terratest.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/README.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/circle-ci-honeycomb-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/circle-ci-honeycomb-integrations.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/fix-circleci-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/fix-circleci-integrations.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/1password-empty-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/1password-empty-field.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/1password-field-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/1password-field-dropdown.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/1password-otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/1password-otp.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/1password-scanner-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/1password-scanner-window.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/1password-transformed-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/1password-transformed-field.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_403.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_acm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_acm1.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_alb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_alb1.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_alb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_alb2.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_ecs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_ecs1.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_ecs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_ecs2.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_ecs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_ecs4.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_gh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_gh1.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_lb_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_lb_bucket.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/atlantis_process1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/atlantis_process1.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/github-2fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/github-2fa.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/github-circleci-checks-repo-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/github-circleci-checks-repo-access.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/github-commit-circleci-status-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/github-commit-circleci-status-check.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/honeycomb-circleci-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/honeycomb-circleci-trace.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/honeycomb-circleci-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/honeycomb-circleci-workflow.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/yubikey-check-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/yubikey-check-keys.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/yubikey-key-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/yubikey-key-import.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/yubikey-otp-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/yubikey-otp-error.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/yubikey-select-authenticate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/yubikey-select-authenticate.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/images/yubikey-sign-encrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/images/yubikey-sign-encrypt.png -------------------------------------------------------------------------------- /docs/infrasec/tutorials/one-time-passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/one-time-passwords.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/your_first_lambda_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/your_first_lambda_function.md -------------------------------------------------------------------------------- /docs/infrasec/tutorials/yubikey-configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/yubikey-configuration.mdx -------------------------------------------------------------------------------- /docs/infrasec/tutorials/yubikey-sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/infrasec/tutorials/yubikey-sso.md -------------------------------------------------------------------------------- /docs/leadership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/leadership/README.md -------------------------------------------------------------------------------- /docs/leadership/eng-lead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/leadership/eng-lead/README.md -------------------------------------------------------------------------------- /docs/leadership/eng-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/leadership/eng-management/README.md -------------------------------------------------------------------------------- /docs/practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/practices.md -------------------------------------------------------------------------------- /docs/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/templates/README.md -------------------------------------------------------------------------------- /docs/templates/adr-appeng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/templates/adr-appeng.md -------------------------------------------------------------------------------- /docs/templates/adr-infrasec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/templates/adr-infrasec.md -------------------------------------------------------------------------------- /docs/templates/subject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/templates/subject/README.md -------------------------------------------------------------------------------- /docs/templates/topic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/templates/topic.md -------------------------------------------------------------------------------- /docs/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/README.md -------------------------------------------------------------------------------- /docs/web/api/GraphQL-Design-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/GraphQL-Design-Guide.md -------------------------------------------------------------------------------- /docs/web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/README.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/Concurrency-Control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/Concurrency-Control.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/Data-Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/Data-Design.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/Error-Response-Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/Error-Response-Strategy.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/HTTP-Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/HTTP-Methods.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/README.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/Style-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/Style-Guide.md -------------------------------------------------------------------------------- /docs/web/api/rest-api-design/URL-Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/api/rest-api-design/URL-Design.md -------------------------------------------------------------------------------- /docs/web/browsersupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/browsersupport/README.md -------------------------------------------------------------------------------- /docs/web/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/README.md -------------------------------------------------------------------------------- /docs/web/frontend/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/architecture.md -------------------------------------------------------------------------------- /docs/web/frontend/developer-experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/developer-experience.md -------------------------------------------------------------------------------- /docs/web/frontend/developing-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/developing-ui.md -------------------------------------------------------------------------------- /docs/web/frontend/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/npm.md -------------------------------------------------------------------------------- /docs/web/frontend/project-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/project-checklist.md -------------------------------------------------------------------------------- /docs/web/frontend/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/react.md -------------------------------------------------------------------------------- /docs/web/frontend/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/testing.md -------------------------------------------------------------------------------- /docs/web/frontend/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/typescript.md -------------------------------------------------------------------------------- /docs/web/frontend/validateDOMNesting_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/frontend/validateDOMNesting_error.png -------------------------------------------------------------------------------- /docs/web/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/server/README.md -------------------------------------------------------------------------------- /docs/web/server/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/server/go.md -------------------------------------------------------------------------------- /docs/web/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/testing/README.md -------------------------------------------------------------------------------- /docs/web/testing/cypress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/testing/cypress.md -------------------------------------------------------------------------------- /docs/web/testing/nightwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docs/web/testing/nightwatch.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /fresh-brew.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/fresh-brew.local -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/nix/update.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/renovate.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /src/components/prism-golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/components/prism-golang.js -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/theme/prism-include-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/src/theme/prism-include-languages.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | playbook.truss.dev 2 | -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/truss-icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/static/img/truss-icon-light.png -------------------------------------------------------------------------------- /utils/redirect-adrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/utils/redirect-adrs.js -------------------------------------------------------------------------------- /utils/redirect-appeng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/utils/redirect-appeng.js -------------------------------------------------------------------------------- /vale/Styles/Repetition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/vale/Styles/Repetition.yml -------------------------------------------------------------------------------- /vale/Styles/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/vale/Styles/Spelling.yml -------------------------------------------------------------------------------- /vale/Vocab/OSS-Docs/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/Engineering-Playbook/HEAD/vale/Vocab/OSS-Docs/accept.txt -------------------------------------------------------------------------------- /vale/Vocab/OSS-Docs/reject.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------