├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # for TerraformFile 2 | terraform.tfvars 3 | terraform.tfstate 4 | terraform.tfstate.backup 5 | private_ips.txt 6 | .terraform 7 | mykey.pem 8 | mykey 9 | mykey.pub 10 | keySetting.sh 11 | 12 | # Vagrant file 13 | .vagrant 14 | 15 | # General 16 | */.* 17 | 18 | # for macOS 19 | .DS_Store 20 | .AppleDouble 21 | .LSOverride 22 | ## Icon must end with \r 23 | Icon? 24 | 25 | # Thumbnails 26 | ._* 27 | 28 | # Files that might appear in the root of a volume 29 | .DocumentRevisions-V100 30 | .fseventsd 31 | .Spotlight-V100 32 | .TemporaryItems 33 | .Trashes 34 | .VolumeIcon.icns 35 | 36 | # Directories potentially created on remote AFP share 37 | .AppleDB 38 | .AppleDesktop 39 | Network Trash Folder 40 | Temporary Items 41 | .apdisk 42 | 43 | # for Python and Jupyter 44 | __pycache__ 45 | */*.pyc 46 | ## Jupyter 47 | .Trash-0 48 | **/.ipynb_checkpoints 49 | **/.ipynb_checkpoints/*.ipynb 50 | 51 | 52 | # Exclude 53 | #!mykey 54 | #!mykey.pub 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Moved to: https://github.com/Finfra/awsTerraform-course (will be updated) 2 | * Old version (no longer updated): https://github.com/Finfra/terraform-course/tree/before2025 --------------------------------------------------------------------------------