Files
terraform-aws-S3-bucket/variables.tf
Hubert Cornet f490d065ab
All checks were successful
Terraform Apply / Terraform Apply (push) Successful in 47s
Actualiser variables.tf
2025-08-19 20:38:19 +02:00

22 lines
895 B
HCL

variable "vault_url" {
description = "URL du serveur Vault"
type = string
sensitive = true
default = "https://vault.tips-of-mine.com"
# ${{ secrets.VAULT_URL }}
# "https://vault.tips-of-mine.com"
}
variable "vault_token" {
description = "Token d'acces"
type = string
sensitive = true
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
# ${{ secrets.VAULT_TOKEN }}
# "hvs.BUXBydP1Iy6leqNIo2wx478p"
}
variable "bucket-list" {
type = list
default = ["cloudflare-dns-org", "cloudflare-dns-com", "cloudflare-tunnel-org", "aws-bucket", "aws-vpc", "aws-iam" ,"aws-iam-group-with-policies", "aws-iam-group-with-assumable-roles-policy", "aws-iam-assumable-roles", "aws-iam-assumable-roles-with-saml", "aws-iam-assumable-role", "aws-iam-assumable-role-with-saml", "aws-iam-assumable-role-with-oidc", "aws-iam-account", "aws-iam-policy", "aws-iam-user"]
}