Skip to content

Instantly share code, notes, and snippets.

@larryebaum
Created June 23, 2021 20:53
Show Gist options
  • Select an option

  • Save larryebaum/b48b2df2b4cbb5c57489626589d223a1 to your computer and use it in GitHub Desktop.

Select an option

Save larryebaum/b48b2df2b4cbb5c57489626589d223a1 to your computer and use it in GitHub Desktop.

Revisions

  1. larryebaum revised this gist Jun 23, 2021. No changes.
  2. larryebaum created this gist Jun 23, 2021.
    101 changes: 101 additions & 0 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,101 @@

    ## MacOS Stuff
    .DS_Store
    .DS_Store?
    ._*
    .Spotlight-V100
    .Trashes
    ehthumbs.db
    Thumbs.db


    ## Keys
    *.pem
    *.key
    *.pub
    id_rsa.pub
    id_rsa
    /.ssh
    *.


    ## Packages
    # it's better to unpack these files and commit the raw source
    # git has its own built in compression methods
    *.7z
    *.dmg
    *.gz
    *.iso
    *.jar
    *.rar
    *.tar
    *.zip


    *.log
    *.sql
    *.sqlite
    .vscode
    .tags*
    log/
    tmp/
    *.sig.key
    *.box.key
    *.sym.key


    ## Chef related
    .chef
    .vagrant
    Berksfile.lock
    .kitchen/
    .kitchen.local.yml
    .delivery/cli.toml
    plans/log/
    plans/tmp/
    results/


    ## HashiCorp related
    # Terraform
    **/.terraform/*
    *.tfstate
    *.tfstate.*
    terraform.tfstate*

    # Exclude all .tfvars files, which are likely to contain sentitive data, such as
    # password, private keys, and other secrets. These should not be part of version
    # control as they are data points which are potentially sensitive and subject
    # to change depending on the environment.
    #
    *.tfvars

    # Ignore override files as they are usually used to override resources locally and so
    # are not checked in
    override.tf
    override.tf.json
    *_override.tf
    *_override.tf.json

    # Include override files you do wish to add to version control using negated pattern
    #
    # !example_override.tf

    # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
    # example: *tfplan*

    # Ignore CLI configuration files
    .terraformrc
    terraform.rc

    # Vagrant
    .vagrant/
    Vagrantfile


    # Jupyter
    .ipynb*


    * Crash
    crash.log