@cryptotaxi247 / infra-1 / commits / a8284433

terraform-iam: declare the existing IAM users for visibility

zimbatm committed Oct 22, 2023 at 13:52 UTC a8284433593db9fcdc1e697a34c0e3dab4958ff2
1 file changed +11
terraform-iam/iam_users.tf new
+11
@@ -0,0 +1,11 @@
1 +resource "aws_iam_user" "s3-upload-cache" {
2 + name = "s3-upload-cache"
3 +}
4 +
5 +resource "aws_iam_user" "s3-upload-releases" {
6 + name = "s3-upload-releases"
7 +}
8 +
9 +resource "aws_iam_user" "s3-upload-tarballs" {
10 + name = "s3-upload-tarballs"
11 +}