This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### merge | |
| - on dev: | |
| git checkout master | |
| then : | |
| git merge dev | |
| ### create local branch then push it to the remotre | |
| git checkout -b feature/tf-environments | |
| then : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import json | |
| import datetime | |
| import logging | |
| import sys | |
| import tempfile | |
| from google.cloud import storage | |
| from smb.SMBConnection import SMBConnection | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://cloud.google.com/kms/docs/encrypt-decrypt | |
| # Import base64 for printing the ciphertext. | |
| import base64 | |
| # Import the client library. | |
| from google.cloud import kms | |
| def encrypt_symmetric( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Notes : | |
| https://www.udemy.com/docker-mastery/ | |
| https://www.youtube.com/watch?v=EnJ7qX9fkcU | |
| https://github.com/matt9ucci/DockerCompletion | |
| why docker | |
| speed | |
| reduce the complexity | |
| Is docker just container run-time ? |