|
| 1 | +terraform { |
| 2 | + required_providers { |
| 3 | + github = { |
| 4 | + source = "integrations/github" |
| 5 | + version = "~> 4.0" |
| 6 | + } |
| 7 | + } |
| 8 | +} |
| 9 | + |
| 10 | +module "template" { |
| 11 | + source = "./template-repo" |
| 12 | + |
| 13 | + description = "Template repository for Terraform modules" |
| 14 | + name = "tf-template" |
| 15 | +} |
| 16 | + |
| 17 | +module "example" { |
| 18 | + depends_on = [module.template] |
| 19 | + source = "./tf-repo" |
| 20 | + |
| 21 | + description = "some text" |
| 22 | + name = "example" |
| 23 | + template_owner = var.github_owner |
| 24 | + template_repository = module.template.template_repo |
| 25 | +} |
| 26 | +# |
| 27 | +module "terraform-aws-aurora-mysql" { |
| 28 | + source = "./tf-repo" |
| 29 | + |
| 30 | + description = "" |
| 31 | + name = "terraform-aws-aurora-mysql" |
| 32 | +} |
| 33 | + |
| 34 | +module "terraform-aws-aurora-postgresql" { |
| 35 | + source = "./tf-repo" |
| 36 | + |
| 37 | + description = "" |
| 38 | + name = "terraform-aws-aurora-postgresql" |
| 39 | +} |
| 40 | + |
| 41 | +module "terraform-aws-dns-validated-certificate" { |
| 42 | + source = "./tf-repo" |
| 43 | + |
| 44 | + description = "" |
| 45 | + name = "terraform-aws-dns-validated-certificate" |
| 46 | +} |
| 47 | + |
| 48 | +# |
| 49 | +#module "terraform-aws-k8s-network" { |
| 50 | +# source = "./tf-repo" |
| 51 | +# |
| 52 | +# description = "" |
| 53 | +# name = "terraform-aws-k8s-network" |
| 54 | +#} |
| 55 | +# |
| 56 | +#module "terraform-cloudamqp-rabbitmq" { |
| 57 | +# source = "./tf-repo" |
| 58 | +# |
| 59 | +# description = "" |
| 60 | +# name = "terraform-cloudamqp-rabbitmq" |
| 61 | +#} |
| 62 | +# |
| 63 | +#module "terraform-aws-k8s" { |
| 64 | +# source = "./tf-repo" |
| 65 | +# |
| 66 | +# description = "" |
| 67 | +# name = "terraform-aws-k8s" |
| 68 | +#} |
| 69 | +# |
| 70 | +#module "terraform-aws-k8s-addons-cluster-autoscaler" { |
| 71 | +# source = "./tf-repo" |
| 72 | +# |
| 73 | +# description = "" |
| 74 | +# name = "terraform-aws-k8s-addons-cluster-autoscaler" |
| 75 | +#} |
| 76 | +# |
| 77 | +#module "nodeamqp" { |
| 78 | +# source = "./tf-repo" |
| 79 | +# |
| 80 | +# description = "" |
| 81 | +# name = "nodeamqp" |
| 82 | +#} |
| 83 | +# |
| 84 | +#module "terraform-aws-k8s-addons-external-secrets-operator" { |
| 85 | +# source = "./tf-repo" |
| 86 | +# |
| 87 | +# description = "" |
| 88 | +# name = "terraform-aws-k8s-addons-external-secrets-operator" |
| 89 | +#} |
| 90 | +# |
| 91 | +#module "terraform-aws-k8s-addons-grafana-agent-operator" { |
| 92 | +# source = "./tf-repo" |
| 93 | +# |
| 94 | +# description = "" |
| 95 | +# name = "terraform-aws-k8s-addons-grafana-agent-operator" |
| 96 | +#} |
| 97 | +# |
| 98 | +#module "govulncheck-action" { |
| 99 | +# source = "./tf-repo" |
| 100 | +# |
| 101 | +# description = "" |
| 102 | +# name = "govulncheck-action" |
| 103 | +#} |
| 104 | + |
| 105 | +#module "auth0" { |
| 106 | +# source = "./tf-repo" |
| 107 | +# |
| 108 | +# description = "" |
| 109 | +# name = "auth0" |
| 110 | +#} |
| 111 | +# |
| 112 | +#module "opzkit_github_io" { |
| 113 | +# source = "./tf-repo" |
| 114 | +# |
| 115 | +# description = "" |
| 116 | +# name = "opzkit.github.io" |
| 117 | +#} |
| 118 | +# |
| 119 | +#module "terraform-aws-k8s-addons-external-secrets" { |
| 120 | +# source = "./tf-repo" |
| 121 | +# |
| 122 | +# description = "" |
| 123 | +# name = "terraform-aws-k8s-addons-external-secrets" |
| 124 | +#} |
| 125 | +# |
| 126 | +#module "terraform-aws-k8s-addons-fluentbit" { |
| 127 | +# source = "./tf-repo" |
| 128 | +# |
| 129 | +# description = "" |
| 130 | +# name = "terraform-aws-k8s-addons-fluentbit" |
| 131 | +#} |
| 132 | +# |
| 133 | +#module "terraform-aws-elasticache-redis" { |
| 134 | +# source = "./tf-repo" |
| 135 | +# |
| 136 | +# description = "" |
| 137 | +# name = "terraform-aws-elasticache-redis" |
| 138 | +#} |
| 139 | +# |
| 140 | +#module "terraform-aws-rds-instance-mysql" { |
| 141 | +# source = "./tf-repo" |
| 142 | +# |
| 143 | +# description = "" |
| 144 | +# name = "terraform-aws-rds-instance-mysql" |
| 145 | +#} |
| 146 | +# |
| 147 | +#module "terraform-aws-rds-instance-postgresql" { |
| 148 | +# source = "./tf-repo" |
| 149 | +# |
| 150 | +# description = "" |
| 151 | +# name = "terraform-aws-rds-instance-postgresql" |
| 152 | +#} |
| 153 | +# |
| 154 | +#module "terraform-aws-k8s-argocd-cluster-secret" { |
| 155 | +# source = "./tf-repo" |
| 156 | +# |
| 157 | +# description = "" |
| 158 | +# name = "terraform-aws-k8s-argocd-cluster-secret" |
| 159 | +#} |
| 160 | +# |
| 161 | +#module "terraform-aws-kops-state-store" { |
| 162 | +# source = "./tf-repo" |
| 163 | +# |
| 164 | +# description = "" |
| 165 | +# name = "terraform-aws-kops-state-store" |
| 166 | +#} |
| 167 | +# |
| 168 | +#module "terraform-aws-k8s-aws-lb-role-fix" { |
| 169 | +# source = "./tf-repo" |
| 170 | +# |
| 171 | +# description = "" |
| 172 | +# name = "terraform-aws-k8s-aws-lb-role-fix" |
| 173 | +#} |
| 174 | +# |
| 175 | +#module "terraform-aws-k8s-addons-external-dns" { |
| 176 | +# source = "./tf-repo" |
| 177 | +# |
| 178 | +# description = "" |
| 179 | +# name = "terraform-aws-k8s-addons-external-dns" |
| 180 | +#} |
| 181 | +# |
| 182 | +#module "terraform-aws-k8s-addons-github-runners" { |
| 183 | +# source = "./tf-repo" |
| 184 | +# |
| 185 | +# description = "" |
| 186 | +# name = "terraform-aws-k8s-addons-github-runners" |
| 187 | +#} |
| 188 | +# |
| 189 | +#module "terraform-aws-k8s-addons-argocd" { |
| 190 | +# source = "./tf-repo" |
| 191 | +# |
| 192 | +# description = "" |
| 193 | +# name = "terraform-aws-k8s-addons-argocd" |
| 194 | +#} |
| 195 | +# |
| 196 | +#module "argocd-bootstrap-template" { |
| 197 | +# source = "./tf-repo" |
| 198 | +# |
| 199 | +# description = "" |
| 200 | +# name = "argocd-bootstrap-template" |
| 201 | +#} |
0 commit comments