chore(infrastructure): upgrade tofu-module-aws-iam-ci-user to 1.1.0
Some checks failed
main / test (push) Failing after 35s

This commit is contained in:
Julien Dessaux 2025-07-09 09:27:11 +02:00
parent 7a58f7e909
commit 09bb1b48c8
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 22 additions and 2 deletions

View file

@ -1,6 +1,14 @@
# 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=",
]
}
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([
{ {

View file

@ -9,7 +9,11 @@ terraform {
required_providers { required_providers {
aws = { aws = {
source = "hashicorp/aws" source = "hashicorp/aws"
version = "5.91.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/"
}