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" }