chore(infrastructure): upgrade tofu-module-aws-iam-ci-user to 1.1.0
All checks were successful
main / test (push) Successful in 1m54s

This commit is contained in:
Julien Dessaux 2025-07-11 09:45:52 +02:00
parent d4f08aa3ba
commit 271ced8520
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 30 additions and 1 deletions

View file

@ -1,6 +1,23 @@
# This file is maintained automatically by "tofu init". # This file is maintained automatically by "tofu init".
# Manual edits may be lost in future updates. # Manual edits may be lost in future updates.
provider "registry.opentofu.org/adyxax/forgejo" {
version = "1.1.0"
constraints = "1.1.0"
hashes = [
"h1:xa2K1rn2OzQofizev01UBKEgq4WHo3EM5/fiPCxFL/E=",
"zh:0a9fb11ae6b14abca1a5376b3c83182586e8735e67aa863b223737af1edb9802",
"zh:16a86c5a4b394f04ab14992b15ee812daee38c88570a6431a9dd7c0b961c3166",
"zh:2c2f2703fad8d682d74832ea650cb58efbaf7b63e67c57f4344561ab529c81de",
"zh:38326430e210fb899981a5d99b3dd17f0040356ef1879e0a3fe96c9d13d27b4b",
"zh:7757c16957287f8e1cca39d349d5c219fc31ef8ce55b60db9f83099e10cd3a93",
"zh:890df766e9b839623b1f0437355032a3c006226a6c200cd911e15ee1a9014e9f",
"zh:b91bd40d90199ff8c811e241f94931a540d571807743dcd9768625d177c38e29",
"zh:efb6d4c30e3412a727c63af9d04ed4b24dfdde251d18343d62a45ae967e4f6ab",
"zh:f5357ef185a3183f01555371602471aeadc340a16b1f1355e706fedbfd1f9dad",
]
}
provider "registry.opentofu.org/hashicorp/aws" { provider "registry.opentofu.org/hashicorp/aws" {
version = "6.2.0" version = "6.2.0"
constraints = "6.2.0" constraints = "6.2.0"

View file

@ -8,8 +8,12 @@ module "aws_iam_ci_user" {
aws.root = aws.all["root"] aws.root = aws.all["root"]
aws.tests = aws.all["tests"] 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" source = "git::ssh://git@git.adyxax.org/adyxax/tofu-module-aws-iam-ci-user?depth=1&ref=1.1.0"
forgejo_repository = {
name = local.name
owner = "adyxax"
}
name = local.name name = local.name
tests_policy_statements = jsonencode([{ tests_policy_statements = jsonencode([{
Action = "iam:*" Action = "iam:*"

View file

@ -11,6 +11,10 @@ terraform {
source = "hashicorp/aws" source = "hashicorp/aws"
version = "6.2.0" version = "6.2.0"
} }
forgejo = {
source = "adyxax/forgejo"
version = "1.1.0"
}
} }
} }
@ -22,3 +26,7 @@ provider "aws" {
profile = each.key profile = each.key
region = "eu-west-3" region = "eu-west-3"
} }
provider "forgejo" {
base_uri = "https://git.adyxax.org/"
}