14 lines
314 B
HCL
14 lines
314 B
HCL
locals {
|
|
name = "tofu-module-aws-iam-ci-user"
|
|
}
|
|
|
|
module "aws_iam_ci_user" {
|
|
providers = {
|
|
aws.core = aws.all["core"]
|
|
aws.root = aws.all["root"]
|
|
aws.tests = aws.all["tests"]
|
|
}
|
|
source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-ci-user?depth=1&ref=1.0.1"
|
|
|
|
name = local.name
|
|
}
|