Skip to content

Instantly share code, notes, and snippets.

View zwindler's full-sized avatar
👨‍💻
SRE trying to learn some code

Denis GERMAIN zwindler

👨‍💻
SRE trying to learn some code
View GitHub Profile
terraform {
backend "gcs" {}
}
remote_state {
backend = "gcs"
config = {
bucket = read_terragrunt_config(find_in_parent_folders("backend.hcl")).inputs.bucket
prefix = path_relative_to_include()
}
}
terraform {
backend "gcs"{
bucket = "tfstate-team-a"
prefix = "team-a-proj-product1"
}
}
inputs = {
project_name = "basename(get_terragrunt_dir())"
}
inputs = {
tech_lead = "Abel Tesfaye"
contact = "atesfaye@gmail.com"
}
@zwindler
zwindler / ipv6_proxmox_online.net.md
Created February 17, 2021 15:01 — forked from DonSYS91/ipv6_proxmox_online.net.md
Configuring IPv6 block from Online.net On Proxmox Host and Guests

Configuring IPv6 block from Online.net On Proxmox Host and Guests

Following the documentation on online.net would get IPv6 to work only in a simple system installation but won't get IPv6 to work with virtualization environment (Exp. Proxmox) as It's missing some IPv6 forwards and proxies on sysctl.conf.

On Proxmox Host (Or Debian if single Debian Installation)

Enable IPv6 on the System:

  • Change Module Options to Enable IPv6:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from pyVim.connect import SmartConnect, Disconnect
from pyVmomi import vim
import argparse
import atexit
import getpass