Skip to content

Instantly share code, notes, and snippets.

View ghiata's full-sized avatar

Stefan Ghiata ghiata

View GitHub Profile

Privacy Policy

Introduction

This Privacy Policy describes how your personal information is handled in our app, which was built using the Capacitor app framework.

Information Collection and Use

We want to assure you that we do not collect any personal information from users of our app. The developer has not added any code to collect, store, or share user information.

image:
name: hashicorp/terraform:0.11.8
entrypoint: ["/bin/sh", "-c"]
stages:
- deploy
apply:
stage: deploy
when: manual
variable "instance_type" {
default = "t2.xlarge"
}
variable "asg_min_size" {
default = "6"
}
variable "asg_max_size" {
default = "24"
module "eks" {
source = "terraform-aws-modules/eks/aws"
cluster_name = "${var.cluster_name}"
subnets = ["${module.vpc.public_subnets}", "${module.vpc.private_subnets}"]
tags = "${map(var.cluster_name, var.environment)}"
vpc_id = "${module.vpc.vpc_id}"
worker_groups = "${list(
map("asg_desired_capacity", var.asg_min_size,
"asg_max_size", var.asg_max_size,
variable "region" {
default = "eu-west-1"
}
variable "availability_zones" {
default = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
}
variable "environment" {
default = "dev"
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
name = "${var.cluster_name}-vpc"
cidr = "10.0.0.0/16"
azs = "${var.availability_zones}"
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
public_subnets = ["10.0.4.0/24", "10.0.5.0/24", "10.0.6.0/24"]
@ghiata
ghiata / byzanz-record-window
Created April 29, 2016 23:01
byzanz-record-window
#!/bin/bash
#byzanz-record-window
#dependency checks
if ! which xwininfo &>/dev/null; then
echo "Dependency xwininfo not met."
deps_ok=NO
fi
if ! which byzanz-record &>/dev/null; then
echo "Dependency byzanz not met."
<label class="item item-select" name="hello">
<span class="input-label">Select your opt</span>
<select></select>
</label>