aboutsummaryrefslogtreecommitdiffstats
path: root/terraform/main.tf
blob: 552120d3a498fc2815f602962c8e1fe10c1d6425 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
terraform {
  backend "s3" {}
  required_version = ">= 1.0"
  required_providers {
    github = {
      source  = "integrations/github"
      version = "~> 5.0"
    }
  }
}

provider "github" {
  token = var.github_token
  owner = "kliwniloc"
}