Skip to content

Instantly share code, notes, and snippets.

variable "git_repos" {
description = "Git repos list, at least one repo need to be defined"
type = list(any)
default = ["demo-org/demo-repo"]
}
variable "iam_policy" {
description = "Policy to be attached to actions role"
default = "arn:aws:iam::aws:policy/AdministratorAccess"
}

Keybase proof

I hereby claim:

  • I am rvoitenko on github.
  • I am rvoitenko (https://keybase.io/rvoitenko) on keybase.
  • I have a public key ASB4sz6FM6A5dstTuVgPchqtu3fcdddQL6e6o707doGXbAo

To claim this, I am signing this object:

@rvoitenko
rvoitenko / ec2list.go
Created March 13, 2017 22:01 — forked from stephen-mw/ec2list.go
Ec2 list in go
package main
import (
"fmt"
"github.com/awslabs/aws-sdk-go/aws"
"github.com/awslabs/aws-sdk-go/service/ec2"
"github.com/vaughan0/go-ini"
"net/url"
"os"
"runtime"