Ajouter list-users.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled

This commit is contained in:
2025-08-20 17:59:37 +02:00
parent 631d6d3852
commit 8a43aa784a

17
list-users.tf Normal file
View File

@@ -0,0 +1,17 @@
#########################################
# IAM user, login profile and access key
#########################################
locals {
name = "vasya.pupkin"
force_destroy = true
# User "test" has uploaded his public key here - https://keybase.io/test/pgp_keys.asc
pgp_key = "keybase:test"
password_reset_required = false
# SSH public key
upload_iam_user_ssh_key = true
ssh_public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0sUjdTEcOWYgQ7ESnHsSkvPUO2tEvZxxQHUZYh9j6BPZgfn13iYhfAP2cfZznzrV"
}