Skip to content

Instantly share code, notes, and snippets.

View dgulli's full-sized avatar

David Gulli dgulli

View GitHub Profile
@dgulli
dgulli / installing_python.md
Last active October 3, 2023 00:57 — forked from adamscharf/installing_python.md
Managing Python using pyenv, virtualenv, and pyenv-virtualenv

Managing Python using pyenv, virtualenv, and pyenv-virtualenv

Problem: You want to maintain multiple different versions of python and keep packages separated based on projects that you're working on.

Solution: Use the pyenv, virtualenv tools along with the pyenv-virutalenv plugin to manage multiple versions of python and seamlessly integrate them with your projects' virtual environments.

Installation

#create a keyring
resource "google_kms_key_ring" "keyring" {
name = var.kmsKeyRingName
location = var.region
}
#create a key
resource "google_kms_crypto_key" "key" {
name = var.kmsKeyName
key_ring = google_kms_key_ring.keyring.id
purpose = var.kmsKeyPurpose
{"lastUpload":"2020-06-17T03:45:54.988Z","extensionVersion":"v3.4.3"}