From 8a43aa784a2b18af4de3c9201c5265a50987b7d6 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Wed, 20 Aug 2025 17:59:37 +0200 Subject: [PATCH] Ajouter list-users.tf --- list-users.tf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 list-users.tf diff --git a/list-users.tf b/list-users.tf new file mode 100644 index 0000000..13d08d0 --- /dev/null +++ b/list-users.tf @@ -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" +} \ No newline at end of file