first commit

This commit is contained in:
Vakhtang Gvenetadze
2025-03-31 12:34:39 +04:00
commit 3fd2f6bdde
59 changed files with 2017 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# ---> Ansible
*.retry
.venv
.vault_password.txt
**/*known_hosts

1
1.txt Normal file
View File

@ -0,0 +1 @@
1

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# localhost_ansible
## Dep
```bash
python3 -m venv .venv
source .venv/bin/activate
pip install ansible
```
## Шифрование файлов
```bash
ansible-vault encrypt 1.txt --vault-password-file ~/Projects/h/ansible/.vault_password.txt
```
## Запуск
```bash
ansible-playbook -K ~/Projects/h/ansible/playbook.yml --vault-password-file ~/Projects/h/ansible/.vault_password.txt
```

6
playbook.yml Normal file
View File

@ -0,0 +1,6 @@
---
- hosts: localhost
roles:
- ssh_config
- apps
- profile_settings

38
roles/apps/README.md Normal file
View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

View File

@ -0,0 +1,2 @@
---
# defaults file for apps

Binary file not shown.

BIN
roles/apps/files/Telegram Normal file

Binary file not shown.

BIN
roles/apps/files/Updater Normal file

Binary file not shown.

View File

@ -0,0 +1,2 @@
---
# handlers file for apps

34
roles/apps/meta/main.yml Normal file
View File

@ -0,0 +1,34 @@
galaxy_info:
author: your name
description: your role description
company: your company (optional)
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
# Choose a valid license ID from https://spdx.org - some suggested licenses:
# - BSD-3-Clause (default)
# - MIT
# - GPL-2.0-or-later
# - GPL-3.0-only
# - Apache-2.0
# - CC-BY-4.0
license: license (GPL-2.0-or-later, MIT, etc)
min_ansible_version: 2.1
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

252
roles/apps/tasks/main.yml Normal file
View File

@ -0,0 +1,252 @@
---
# tasks file for apps
- name: Add wireshark stable repository from PPA
ansible.builtin.apt_repository:
repo: ppa:wireshark-dev/stable
become: true
- name: "Update and install packages on server"
ansible.builtin.apt:
name:
- mc
- htop
- mtr
- tmux
- traceroute
- wireguard
- python3.12-venv
- xprintidle
- git
- apt-transport-https
- ca-certificates
- gnupg
- curl
- kalk
- remmina
- wireshark
- zsh
- audacity
- kazam
- ktorrent
- libreoffice
- thunderbird
- fonts-terminus
- freerdp2-x11
- gimp
state: latest
update_cache: true
become: true
# Telegram
- name: Make telegram dir
file:
path: "/opt/apps/telegram/"
state: directory
recurse: true
mode: ugo+rx
become: true
# - name: Copy Telegram
# copy:
# src: Telegram
# dest: "/opt/apps/telegram/telegram"
# mode: ugo+rx
# become: true
# - name: Copy Telegram Updater
# copy:
# src: Updater
# dest: "/opt/apps/telegram/updater"
# mode: ugo+rx
# become: true
- name: "Download telegram"
ansible.builtin.get_url:
url: https://telegram.org/dl/desktop/linux
dest: "{{ tmp_dir }}/tsetup.tar.xz"
mode: ugo+r
become: true
- name: Unarchive telegram
ansible.builtin.shell:
cmd: "tar -xJpf {{ tmp_dir }}/tsetup.tar.xz -C /opt/apps/"
become: true
# google-chrome
- name: "Download google-chrome"
ansible.builtin.get_url:
url: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
dest: "{{ tmp_dir }}/google-chrome-stable_current_amd64.deb"
mode: ugo+rw
- name: "Install google-chrome"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/google-chrome-stable_current_amd64.deb"
become: true
- name: "Download VSCode"
ansible.builtin.get_url:
# url: https://vscode.download.prss.microsoft.com/dbazure/download/stable/f1a4fb101478ce6ec82fe9627c43efbf9e98c813/code_1.95.3-1731513102_amd64.deb
url: https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64
dest: "{{ tmp_dir }}/code_amd64.deb"
mode: ugo+rw
- name: "Install VSCode"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/code_amd64.deb"
become: true
- name: Git checkout tfenv
ansible.builtin.git:
repo: "https://github.com/tfutils/tfenv.git"
dest: "~/.tfenv"
clone: yes
depth: 1
- name: Make .local/bin dir
file:
path: "~/.local/bin"
state: directory
- name: Create a symbolic link on tfenv
ansible.builtin.file:
src: ~/.tfenv/bin/tfenv
dest: ~/.local/bin/tfenv
state: link
- name: Apply profile
shell: source ~/.profile
args:
executable: /bin/bash
- name: Install Terraform
block:
- name: Check if Terraform is installed
ansible.builtin.command: "~/.local/bin/tfenv version-name"
register: tfenv_version_name_result
changed_when: tfenv_version_name_result.rc == 1
failed_when: tfenv_version_name_result.rc not in [0, 1]
- name: Install Terraform binary
ansible.builtin.shell:
cmd: "~/.local/bin/tfenv install 1.5.0 && ~/.local/bin/tfenv use"
when: tfenv_version_name_result is changed
#gcloud
- name: Add google GPG apt Key
apt_key:
url: https://packages.cloud.google.com/apt/doc/apt-key.gpg
state: present
keyring: /usr/share/keyrings/cloud.google.gpg
become: true
- name: Add GCloud Repository
apt_repository:
repo: deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main
state: present
become: true
- name: Update apt and install google-cloud-cli
apt:
name: google-cloud-cli
state: latest
update_cache: true
become: true
# KeePassXC
- name: Make keepassxc dir
file:
path: "/opt/apps/keepassxc/"
state: directory
recurse: true
mode: ugo+rx
become: true
- name: Copy KeePassXC
copy:
src: KeePassXC-2.7.10-x86_64.AppImage
dest: "/opt/apps/keepassxc/keepassxc"
mode: ugo+rx
become: true
# Nextcloud
- name: Make nextcloud dir
file:
path: "/opt/apps/nextcloud/"
state: directory
recurse: true
mode: ugo+rx
become: true
- name: Download Nextcloud
ansible.builtin.get_url:
url: https://github.com/nextcloud-releases/desktop/releases/download/v3.16.0/Nextcloud-3.16.0-x86_64.AppImage
dest: "/opt/apps/nextcloud/nextcloud"
mode: ugo+rx
become: true
# Discord
# - name: "Download Discord"
# ansible.builtin.get_url:
# url: https://discord.com/api/download?platform=linux&format=deb
# dest: "{{ tmp_dir }}/discord.deb"
# mode: ugo+r
# - name: "Install discord"
# ansible.builtin.apt:
# deb: "{{ tmp_dir }}/discord.deb"
# become: true
# Zoom
- name: Download zoom
ansible.builtin.get_url:
url: https://cdn.zoom.us/prod/6.3.6.6315/zoom_amd64.deb
dest: "{{ tmp_dir }}/zoom_amd64.deb"
mode: ugo+r
# - name: Copy Zoom
# copy:
# src: zoom_amd64.deb
# dest: "{{ tmp_dir }}/zoom_amd64.deb"
- name: "Install Zoom"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/zoom_amd64.deb"
become: true
# dbeaver
- name: Download dbeaver
ansible.builtin.get_url:
url: https://dbeaver.io/files/dbeaver-ce_latest_amd64.deb
dest: "{{ tmp_dir }}/dbeaver-ce_latest_amd64.deb"
mode: ugo+r
- name: "Install dbeaver"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/dbeaver-ce_latest_amd64.deb"
become: true
# VeraCrypt
- name: Download VeraCrypt
ansible.builtin.get_url:
url: https://launchpad.net/veracrypt/trunk/1.26.20/+download/veracrypt-1.26.20-Ubuntu-24.04-amd64.deb
dest: "{{ tmp_dir }}/VeraCrypt.deb"
mode: ugo+r
- name: "Install VeraCrypt"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/VeraCrypt.deb"
become: true
# ktalk
- name: Download ktalk
ansible.builtin.get_url:
url: https://st.ktalk.host/ktalk-app/linux/ktalk3.0.0amd64.deb
dest: "{{ tmp_dir }}/ktalk.deb"
mode: ugo+r
- name: "Install ktalk"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/ktalk.deb"
become: true
# balenaEtcher
- name: Make balenaEtcher dir
file:
path: "/opt/apps/balenaEtcher/"
state: directory
recurse: true
mode: ugo+rx
become: true
- name: Download balenaEtcher
ansible.builtin.get_url:
url: https://github.com/balena-io/etcher/releases/download/v1.19.25/balenaEtcher-linux-x64-1.19.25.zip
dest: "/opt/apps/balenaEtcher/balenaEtcher.zip"
mode: ugo+r
become: true
- name: Unarchive balenaEtcher
ansible.builtin.unarchive:
src: /opt/apps/balenaEtcher/balenaEtcher.zip
dest: /opt/apps/balenaEtcher/
become: true
- name: Set permiton for directory
ansible.builtin.file:
path: /opt/apps/balenaEtcher/balenaEtcher-linux-x64
state: directory
mode: '0755'
become: true
# anydesk
- name: Download anydesk
ansible.builtin.get_url:
url: https://download.anydesk.com/linux/anydesk_6.3.3-1_amd64.deb
dest: "{{ tmp_dir }}/anydesk.deb"
mode: ugo+r
- name: "Install anydesk"
ansible.builtin.apt:
deb: "{{ tmp_dir }}/anydesk.deb"
become: true

View File

@ -0,0 +1,2 @@
localhost

View File

@ -0,0 +1,5 @@
---
- hosts: localhost
remote_user: root
roles:
- apps

3
roles/apps/vars/main.yml Normal file
View File

@ -0,0 +1,3 @@
---
# vars file for apps
tmp_dir: /var/tmp

View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

View File

@ -0,0 +1,2 @@
---
# defaults file for profile_settings

View File

@ -0,0 +1,5 @@
[user]
name = Vakhtang Gvenetadze
email = 8927096+vakhtangst@users.noreply.github.com
[init]
defaultBranch = main

View File

@ -0,0 +1,106 @@
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
#ZSH_THEME="philips"
#ZSH_THEME="eastwood"
ZSH_THEME="gentoo"
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" "dpoggi" "eastwood" "gentoo" )
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment one of the following lines to change the auto-update behavior
# zstyle ':omz:update' mode disabled # disable automatic updates
# zstyle ':omz:update' mode auto # update automatically without asking
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
# Uncomment the following line to change how often to auto-update (in days).
# zstyle ':omz:update' frequency 13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# You can also set it to another string to have that shown instead of the default red dots.
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
HIST_STAMPS="yyyy-mm-dd"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git tmux terraform)
source $ZSH/oh-my-zsh.sh
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
alias set_aws_sre='export AWS_PROFILE=sre && eval $(assume-role -duration=12h sre-role) && aws sts get-caller-identity'
#eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"

View File

@ -0,0 +1,13 @@
#!/bin/bash
rmmod btusb
sleep 1
rmmod btrtl
sleep 1
rmmod btbcm
sleep 1
rmmod btintel
sleep 1
rmmod btmtk
sleep 1
modprobe btusb

View File

@ -0,0 +1,98 @@
[remmina]
password=.
gateway_username=gvenetadze.v
notes_text=
window_height=1431
vc=
preferipv6=0
ssh_tunnel_loopback=0
serialname=
tls-seclevel=
freerdp_log_level=INFO
printer_overrides=
name=rdfarm-ams2-1.offilan.com
console=0
colordepth=32
security=ext
precommand=
disable_fastpath=0
postcommand=
left-handed=0
multitransport=1
group=
server=rdfarm-ams2-1.offilan.com
ssh_tunnel_certfile=
glyph-cache=0
ssh_tunnel_enabled=0
disableclipboard=0
labels=
audio-output=
ssh_tunnel_command=
monitorids=
cert_ignore=1
disconnect-prompt=0
parallelpath=
protocol=RDP
serialpermissive=0
old-license=0
ssh_tunnel_password=
resolution_mode=1
assistance_mode=0
pth=
disableautoreconnect=0
loadbalanceinfo=tsv://MS Terminal Services Plugin.1.FreelanceDesktop
clientbuild=
gateway_server=rdgw.offilan.com
clientname=
resolution_width=0
drive=
relax-order-checks=0
base-cred-for-gw=0
gateway_domain=office.lan
profile-lock=0
rdp2tcp=
gateway_password=.
rdp_reconnect_attempts=
domain=office.lan
serialdriver=
restricted-admin=0
smartcardname=
multimon=0
exec=
network=none
username=gvenetadze.v
enable-autostart=0
usb=
shareprinter=0
ssh_tunnel_passphrase=
viewmode=4
quality=0
span=0
disablepasswordstoring=0
parallelname=
serialpath=
shareparallel=0
ssh_tunnel_auth=0
keymap=
ssh_tunnel_username=
execpath=
shareserial=0
resolution_height=0
rdp_mouse_jitter=No
useproxyenv=0
dvc=
microphone=
no-suppress=0
disable-smooth-scrolling=0
window_maximize=0
freerdp_log_filters=
ssh_tunnel_server=
ignore-tls-errors=1
sharesmartcard=0
gateway_usage=1
timeout=
ssh_tunnel_privatekey=
window_width=2603
sound=local
websockets=0
gwtransp=auto

View File

@ -0,0 +1,98 @@
[remmina]
password=.
gateway_username=
notes_text=
vc=
window_width=1814
window_height=1029
preferipv6=0
ssh_tunnel_loopback=0
serialname=
tls-seclevel=
websockets=0
printer_overrides=
name=stg-msk-ts0.telecontact.su
console=0
colordepth=99
security=
precommand=
disable_fastpath=0
left-handed=0
postcommand=
multitransport=1
group=
server=stg-msk-ts0.telecontact.su
ssh_tunnel_command=
glyph-cache=0
ssh_tunnel_enabled=0
disableclipboard=0
disconnect-prompt=0
parallelpath=
audio-output=
monitorids=
cert_ignore=0
serialpermissive=0
gateway_server=
protocol=RDP
ssh_tunnel_password=
labels=
ssh_tunnel_certfile=
resolution_mode=2
assistance_mode=0
old-license=0
pth=
loadbalanceinfo=
disableautoreconnect=0
clientbuild=
clientname=
resolution_width=0
drive=
relax-order-checks=0
base-cred-for-gw=0
gateway_domain=
network=none
rdp2tcp=
gateway_password=
rdp_reconnect_attempts=
domain=telecontact.su
serialdriver=
username=v.gvenetadze
multimon=0
serialpath=
exec=
smartcardname=
restricted-admin=0
enable-autostart=0
usb=
ssh_tunnel_passphrase=
disablepasswordstoring=0
shareprinter=0
shareparallel=0
quality=0
profile-lock=0
viewmode=4
span=0
parallelname=
ssh_tunnel_auth=0
keymap=
ssh_tunnel_username=
execpath=
shareserial=0
resolution_height=0
rdp_mouse_jitter=No
useproxyenv=0
sharesmartcard=0
freerdp_log_filters=
microphone=
timeout=
ssh_tunnel_privatekey=
gwtransp=auto
ssh_tunnel_server=
ignore-tls-errors=1
window_maximize=0
dvc=
gateway_usage=0
disable-smooth-scrolling=0
no-suppress=0
freerdp_log_level=INFO
sound=off

View File

@ -0,0 +1,100 @@
[remmina]
password=.
gateway_username=
notes_text=
vc=
window_height=1029
preferipv6=0
ssh_tunnel_loopback=0
serialname=
tls-seclevel=
sound=off
printer_overrides=
name=tc-mix-rds6.telecontact.ru
console=0
colordepth=32
security=ext
precommand=
disable_fastpath=0
postcommand=
left-handed=0
multitransport=1
group=
server=tc-mix-rds6.telecontact.ru
ssh_tunnel_certfile=
glyph-cache=0
ssh_tunnel_enabled=0
disableclipboard=0
disconnect-prompt=0
audio-output=
ssh_tunnel_command=
monitorids=
cert_ignore=0
labels=
parallelpath=
protocol=RDP
old-license=0
ssh_tunnel_password=
resolution_mode=0
assistance_mode=0
pth=
disableautoreconnect=0
loadbalanceinfo=
clientbuild=
gateway_server=
clientname=
resolution_width=2560
drive=
serialpermissive=0
relax-order-checks=0
base-cred-for-gw=0
gateway_domain=
profile-lock=0
rdp2tcp=
gateway_password=
serialdriver=
domain=telecontact.ru
rdp_reconnect_attempts=
smartcardname=
exec=
restricted-admin=0
network=none
serialpath=
enable-autostart=0
multimon=0
usb=
shareprinter=0
ssh_tunnel_passphrase=
username=v.gvenetadze
disablepasswordstoring=0
quality=0
span=0
shareparallel=0
parallelname=
viewmode=4
execpath=
ssh_tunnel_auth=0
ssh_tunnel_username=
sharesmartcard=0
keymap=
resolution_height=1440
shareserial=0
useproxyenv=0
dvc=
no-suppress=0
rdp_mouse_jitter=No
authentication level=2
keyboard_grab=0
window_maximize=0
freerdp_log_filters=
ssh_tunnel_server=
ignore-tls-errors=1
ssh_tunnel_privatekey=
gateway_usage=0
timeout=
gwtransp=http
window_width=2152
microphone=
freerdp_log_level=INFO
websockets=0
disable-smooth-scrolling=0

View File

@ -0,0 +1,27 @@
[General]
BackupBeforeSave=true
ConfigVersion=2
UpdateCheckMessageShown=true
[Browser]
CustomProxyLocation=
Enabled=true
[GUI]
TrayIconAppearance=monochrome-light
[KeeShare]
Active="<?xml version=\"1.0\"?><KeeShare><Active/></KeeShare>\n"
Own="<?xml version=\"1.0\"?><KeeShare><PrivateKey>MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCsB+u9lUOV23CDj3g5FSrVOufzb9xEhnGLT0UV3Y0nMcgGRNRV2rdUNraT1S0bP+DgDH4K2lxfXJGSsgahaZ8guGdrZabEU+3F0ConcDzSvln4Y2ji21TWn8GyE4Ur3zuLMWQnJRn8iJgp+nbtanD3WKM1LBjLoz0SjiKVWBr2QZjT/Kf0EHFm8uUMA2qaDUAL07tVmKELgQn5TDNe2lFyqBKqgFiDBTrSaTZ7gIHytizz0vAzn6mwc+bhzuq+rdI+FbHpJ2oD6wR+O6p9wmLVVVVCWUzxo/TCzd70fcx3Bgg02iilJAIGewU5lClYReUezgAS6y72A/ZAhsRTm3YPAgMBAAECggEAHD50AgfIIAn2TTtDDJ2A5J+hERLmpz+AKSmbbkLA19RbV/V5URvcKTuPD/LEzupWxCIjmCo6q+jETmvjx8t8teq2Br1v5bWL3lmAxOyEp+sFqtC+GdoocdD/2aSieCNUoNPmnWtWJWPTFmKfSk0ap+7JuO34/Nyw/GNmon4OddXmqx2480ZfbYMij9Ym2HmoDZBCEswAy6aiaDW9D6mo+p8RxIz+gaGj/DUOH0Jjs0F5Yu+ZoiJQpfvhBCUBRD0zUEhCTlD9wVWJthYRrrBgT9Tcs1Gt9xvXEfJS6toW5ktOZOPat0lQzjxKsUdNp54ywAQmeMxQtnLiHoWN44RG6QKBgQDSnhX1la2vXpsj4N4kl61ybTpR5sTF2NoaeSwr/7a4EYwy7kbGVnLH75yzp3sEHn0brzxzelL2VQZ/LkR5X6zRz6tNq9IcYJtx072lH0ZhPPGaYmYe8E5EgYjipCO0WJ3SaH63skyvwnM0Cw/1l00bsd3iK/oIFXeFA0azxW5kGQKBgQDRGVpmiwUpnlvmi/eAOs4nmKroYf1nNAusnMmKrNbOdPxxcpoF7pkMX3sbLZAmPxnpg2hQFovgxfXQSo6n+/c60lxjRCqZOtkkafsjQP0WNtVfY7fHms2NomxmjcBg+CHnWcq5AgD/xeXcBHKtRTNOjbjU+/ersNXFsBxg5mCwZwKBgBdHug2nOceEoYlZtbQ9v8JCKIwdAesMiS8b7bH/VecKqYCHrfMGYzGOXrfM72AJLrL8r6XkA3+O7mTobFEuLiAS4FB5iYPxeb0fNnsl9dWRsvLppXgN/9i6qLLEid3JXciAHGGZp7hVuf4qqtzumGtTQb9aNQznsopVTl9Yl1chAoGAR7rcyiSSps5OVG5bfz+tDORQbNuApHC0OIioksvr/HMhToGz2KkbE6WFg7NDqfsnlnWfySmS3o7KXqPVAEdtbl5PlzYBLwODDfzVTCi1KXOyCsEYgH7YWOgJK70g66LzbnvdEU5grV1kFu/nrwz4JtBzQY0WT22gR+q8MXmWXa0CgYBR+QZM3qw9gcXp81GrFGFJM19DKZuW5XieZwu3NLkqmhCl4RbnCSVKJyYku9BCQfiDrfrp9fdjAYFXY5P065MH5x3xI922g6PDVA3ZG7e/78EMgKtkggygDRubUdVFxtN5lr2X1XRtgTx1kRJPxVbAnvPDMQZZ3eyuKumcZ40eKQ==</PrivateKey><PublicKey><Signer>vakhtang</Signer><Key>MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCsB+u9lUOV23CDj3g5FSrVOufzb9xEhnGLT0UV3Y0nMcgGRNRV2rdUNraT1S0bP+DgDH4K2lxfXJGSsgahaZ8guGdrZabEU+3F0ConcDzSvln4Y2ji21TWn8GyE4Ur3zuLMWQnJRn8iJgp+nbtanD3WKM1LBjLoz0SjiKVWBr2QZjT/Kf0EHFm8uUMA2qaDUAL07tVmKELgQn5TDNe2lFyqBKqgFiDBTrSaTZ7gIHytizz0vAzn6mwc+bhzuq+rdI+FbHpJ2oD6wR+O6p9wmLVVVVCWUzxo/TCzd70fcx3Bgg02iilJAIGewU5lClYReUezgAS6y72A/ZAhsRTm3YPAgMBAAECggEAHD50AgfIIAn2TTtDDJ2A5J+hERLmpz+AKSmbbkLA19RbV/V5URvcKTuPD/LEzupWxCIjmCo6q+jETmvjx8t8teq2Br1v5bWL3lmAxOyEp+sFqtC+GdoocdD/2aSieCNUoNPmnWtWJWPTFmKfSk0ap+7JuO34/Nyw/GNmon4OddXmqx2480ZfbYMij9Ym2HmoDZBCEswAy6aiaDW9D6mo+p8RxIz+gaGj/DUOH0Jjs0F5Yu+ZoiJQpfvhBCUBRD0zUEhCTlD9wVWJthYRrrBgT9Tcs1Gt9xvXEfJS6toW5ktOZOPat0lQzjxKsUdNp54ywAQmeMxQtnLiHoWN44RG6QKBgQDSnhX1la2vXpsj4N4kl61ybTpR5sTF2NoaeSwr/7a4EYwy7kbGVnLH75yzp3sEHn0brzxzelL2VQZ/LkR5X6zRz6tNq9IcYJtx072lH0ZhPPGaYmYe8E5EgYjipCO0WJ3SaH63skyvwnM0Cw/1l00bsd3iK/oIFXeFA0azxW5kGQKBgQDRGVpmiwUpnlvmi/eAOs4nmKroYf1nNAusnMmKrNbOdPxxcpoF7pkMX3sbLZAmPxnpg2hQFovgxfXQSo6n+/c60lxjRCqZOtkkafsjQP0WNtVfY7fHms2NomxmjcBg+CHnWcq5AgD/xeXcBHKtRTNOjbjU+/ersNXFsBxg5mCwZwKBgBdHug2nOceEoYlZtbQ9v8JCKIwdAesMiS8b7bH/VecKqYCHrfMGYzGOXrfM72AJLrL8r6XkA3+O7mTobFEuLiAS4FB5iYPxeb0fNnsl9dWRsvLppXgN/9i6qLLEid3JXciAHGGZp7hVuf4qqtzumGtTQb9aNQznsopVTl9Yl1chAoGAR7rcyiSSps5OVG5bfz+tDORQbNuApHC0OIioksvr/HMhToGz2KkbE6WFg7NDqfsnlnWfySmS3o7KXqPVAEdtbl5PlzYBLwODDfzVTCi1KXOyCsEYgH7YWOgJK70g66LzbnvdEU5grV1kFu/nrwz4JtBzQY0WT22gR+q8MXmWXa0CgYBR+QZM3qw9gcXp81GrFGFJM19DKZuW5XieZwu3NLkqmhCl4RbnCSVKJyYku9BCQfiDrfrp9fdjAYFXY5P065MH5x3xI922g6PDVA3ZG7e/78EMgKtkggygDRubUdVFxtN5lr2X1XRtgTx1kRJPxVbAnvPDMQZZ3eyuKumcZ40eKQ==</Key></PublicKey></KeeShare>\n"
QuietSuccess=true
[PasswordGenerator]
AdditionalChars=
ExcludedChars=
SpecialChars=false
[SSHAgent]
Enabled=true
[Security]
LockDatabaseScreenLock=false

View File

@ -0,0 +1,5 @@
[libdefaults]
default_realm = TELECONTACT.RU
dns_lookup_kdc = 0
permitted_enctypes = aes256-cts-hmac-sha1-96
rdns = false

View File

@ -0,0 +1,125 @@
[remmina_pref]
secret=NYRWDIPTzCLTWpe6RH7iV5PAESzdhAJfWYYaes2Xj8w=
datadir_path=
remmina_file_name=%G_%P_%N_%h
screenshot_path=/home/vakhtang/Pictures
screenshot_name=remmina_%p_%h_%Y%m%d-%H%M%S
deny_screenshot_clipboard=true
save_view_mode=true
confirm_close=true
use_primary_password=false
unlock_timeout=300
unlock_password=
lock_connect=false
lock_edit=false
enc_mode=1
audit=false
trust_all=false
floating_toolbar_placement=0
toolbar_placement=3
prevent_snap_welcome_message=false
last_quickconnect_protocol=
fullscreen_on_auto=true
always_show_tab=true
hide_connection_toolbar=false
hide_searchbar=false
default_action=0
scale_quality=3
ssh_loglevel=1
ssh_parseconfig=true
hide_toolbar=false
small_toolbutton=false
view_file_mode=0
resolutions=640x480,800x600,1024x768,1152x864,1280x960,1400x1050,2560x1440
keystrokes=Send hello world§hello world\\n
main_width=656
main_height=400
main_maximize=false
main_sort_column_id=1
main_sort_order=0
expanded_group=
toolbar_pin_down=false
sshtunnel_port=4732
ssh_tcp_keepidle=20
ssh_tcp_keepintvl=10
ssh_tcp_keepcnt=3
ssh_tcp_usrtimeout=60000
applet_new_ontop=false
applet_hide_count=false
applet_enable_avahi=false
disable_tray_icon=false
dark_theme=false
recent_maximum=10
default_mode=0
tab_mode=0
fullscreen_toolbar_visibility=0
auto_scroll_step=10
hostkey=65508
shortcutkey_fullscreen=102
shortcutkey_autofit=49
shortcutkey_nexttab=65363
shortcutkey_prevtab=65361
shortcutkey_scale=115
shortcutkey_grab=65508
shortcutkey_multimon=65365
shortcutkey_viewonly=109
shortcutkey_screenshot=65481
shortcutkey_minimize=65478
shortcutkey_disconnect=65473
shortcutkey_toolbar=116
vte_shortcutkey_copy=99
vte_shortcutkey_paste=118
vte_shortcutkey_select_all=97
vte_shortcutkey_increase_font=65365
vte_shortcutkey_decrease_font=65366
vte_shortcutkey_search_text=103
vte_font=
grab_color=#00ff00
grab_color_switch=false
vte_allow_bold_text=true
vte_lines=512
lock_view_passwords=false
always_show_notes=false
shortcutkey_clipboard=98
[ssh_colors]
background=#d5ccba
cursor=#45373c
cursor_foreground=#d5ccba
highlight=#45373c
highlight_foreground=#d5ccba
colorBD=#45373c
foreground=#45373c
color0=#20111b
color1=#be100e
color2=#858162
color3=#eaa549
color4=#426a79
color5=#97522c
color6=#989a9c
color7=#968c83
color8=#5e5252
color9=#be100e
color10=#858162
color11=#eaa549
color12=#426a79
color13=#97522c
color14=#989a9c
color15=#d5ccba
[remmina_news]
periodic_news_permitted=true
periodic_rmnews_last_get=1725296854
periodic_rmnews_get_count=2
periodic_rmnews_uuid_prefix=MFNREM1UOND0XI
[remmina]
name=
ignore-tls-errors=1
[remmina_info]
periodic_news_permitted=false
periodic_news_last_checksum=
periodic_usage_stats_permitted=false
info_uid_prefix=6ITJBAKMW21M99
disable_tip=true

View File

@ -0,0 +1,2 @@
---
# handlers file for profile_settings

View File

@ -0,0 +1,34 @@
galaxy_info:
author: your name
description: your role description
company: your company (optional)
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
# Choose a valid license ID from https://spdx.org - some suggested licenses:
# - BSD-3-Clause (default)
# - MIT
# - GPL-2.0-or-later
# - GPL-3.0-only
# - Apache-2.0
# - CC-BY-4.0
license: license (GPL-2.0-or-later, MIT, etc)
min_ansible_version: 2.1
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

View File

@ -0,0 +1,124 @@
---
# tasks file for profile_settings
- name: Make scripts dir
file:
path: "{{ ansible_env.HOME }}/scripts"
state: directory
- name: Copy bt_reconnect script
copy:
src: bt_reconnect.sh
dest: "{{ ansible_env.HOME }}/scripts/"
- name: Copy .gitconfig
copy:
src: .gitconfig
dest: "{{ ansible_env.HOME }}/.gitconfig"
- name: Make secret dir
file:
path: "{{ ansible_env.HOME }}/secrets"
state: directory
- name: Make bin dir
file:
path: "{{ ansible_env.HOME }}/bin"
state: directory
- name: Create a symbolic link on terraform
ansible.builtin.file:
src: "~/.tfenv/bin/terraform"
dest: "~/.local/bin/terraform"
state: link
- name: Copy remmina config for rdfarm
copy:
src: group_rdp_rdfarm-ams2-1-offilan-com_rdfarm-ams2-1-offilan-com.remmina
dest: "{{ ansible_env.HOME }}/.local/share/remmina/"
- name: Copy remmina config for ts0
copy:
src: group_rdp_stg-msk-ts0-telecontact-su_stg-msk-ts0-telecontact-su.remmina
dest: "{{ ansible_env.HOME }}/.local/share/remmina/"
- name: Copy remmina config for rds6
copy:
src: group_rdp_tc-mix-rds6-telecontact-ru_tc-mix-rds6-telecontact-ru.remmina
dest: "{{ ansible_env.HOME }}/.local/share/remmina/"
- name: Copy remmina pref
copy:
src: remmina.pref
dest: "{{ ansible_env.HOME }}/.config/remmina/"
- name: Create a symbolic link on keepassxc
ansible.builtin.file:
src: "/opt/apps/keepassxc/keepassxc"
dest: "~/.local/bin/keepassxc"
state: link
- name: Copy keepassxc config
copy:
src: keepassxc.ini
dest: "{{ ansible_env.HOME }}/.config/keepassxc/"
- name: Create a symbolic link on nextcloud
ansible.builtin.file:
src: "/opt/apps/nextcloud/nextcloud"
dest: "~/.local/bin/nextcloud"
state: link
- name: Create a symbolic link on telegram
ansible.builtin.file:
src: "/opt/apps/Telegram/Telegram"
dest: "~/.local/bin/telegram"
state: link
- name: Make cybrnx dir
file:
path: "{{ ansible_env.HOME }}/Projects/c/cybrnx/"
state: directory
recurse: true
- name: Clone git repository terraform-applications
ansible.builtin.git:
repo: 'git@github.com:cybrnx/terraform-applications.git'
dest: "{{ ansible_env.HOME }}/Projects/c/cybrnx/terraform-applications"
update: no
- name: Clone git repository terraform-bootstrap
ansible.builtin.git:
repo: 'git@github.com:cybrnx/terraform-bootstrap.git'
dest: "{{ ansible_env.HOME }}/Projects/c/cybrnx/terraform-bootstrap"
update: no
- name: Clone git repository terraform-modules
ansible.builtin.git:
repo: 'git@github.com:cybrnx/terraform-modules.git'
dest: "{{ ansible_env.HOME }}/Projects/c/cybrnx/terraform-modules"
update: no
- name: Clone git repository terraform-operations
ansible.builtin.git:
repo: 'git@github.com:cybrnx/terraform-operations.git'
dest: "{{ ansible_env.HOME }}/Projects/c/cybrnx/terraform-operations"
update: no
- name: Clone git repository terraform-organization
ansible.builtin.git:
repo: 'git@github.com:cybrnx/terraform-organization.git'
dest: "{{ ansible_env.HOME }}/Projects/c/cybrnx/terraform-organization"
update: no
- name: Clone git repository terraform-organizatiom for VSCode
ansible.builtin.git:
repo: 'https://github.com/hariscodes/vscode-language-terraform'
dest: "{{ ansible_env.HOME }}/.vscode/extensions/vscode-language-terraform"
update: no
# Setting oh-my-zsh
- name: Clone git repository terraform-organizatiom for VSCode
ansible.builtin.git:
repo: 'https://github.com/ohmyzsh/ohmyzsh'
dest: "{{ ansible_env.HOME }}/.oh-my-zsh/"
- name: Copy .zshrc
copy:
src: .zshrc
dest: "{{ ansible_env.HOME }}/.zshrc"
- name: change user shell to zsh
become: yes
user:
name: "vakhtang"
shell: /bin/zsh
- name: Copy krb5.conf
copy:
src: krb5.conf
dest: "/etc/krb5.conf"
# Apply profile
- name: Apply profile
shell: source ~/.profile
args:
executable: /bin/bash
# - name: Run Oh My Zsh installation script
# command: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --unattended
# register: ohmyzsh_result
# failed_when: "'FAILED' in ohmyzsh_result.stderr"

View File

@ -0,0 +1,2 @@
localhost

View File

@ -0,0 +1,5 @@
---
- hosts: localhost
remote_user: root
roles:
- profile_settings

View File

@ -0,0 +1,2 @@
---
# vars file for profile_settings

View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

View File

@ -0,0 +1,2 @@
---
# defaults file for ssh_config

View File

@ -0,0 +1,26 @@
$ANSIBLE_VAULT;1.1;AES256
61646637396533326435303132353266363839326666343832346466613464643336316139646338
6135633866396636333161346262343463313161313464300a656435643438636331396461376663
63653261303431396232656263326462636237383533373764633435303265646165336333623136
3762363266323635640a316464666466633130363839666264323132373765336239653930646362
65393939646636393730633639636465343135313566316539616538326434376632656662353566
64663636346435366264316264353438326237656262323763373564303139303531663536333033
64383038643130623566313364623161383337346261333564616663616234626463383336663161
30623734346532643832356364396332363531353938303830356339333462323934623237343731
65363362343332326261666361366539636566663966313831303031623839323830376231653765
64633761376337636230363832393164633837613230636639366233366537626236636235326434
32653064613838376361363031653733636439653839353533386139643234643438303737353830
65373864653830313663623039616263613862343939613433643434663366633930363730613036
35666130633134353066303039623134343433306264643431666361303966396239643636346434
63623665343062343032376562306632373835306530383466353266663966346533373937313335
36306436663134373561316434386535343333343966663130383238373463383333353866366332
64613664396336363834636332396663393034623030326138633437346238326564366265656132
32356436303732626666626139666133313635663362623132343634303334656630383139633363
37306661333331356331363638653137626432396637333834663431353561373839323338326365
62366362656361303539396665353635306436646365363137383232653036353635356362333466
35313335623837643133326263653664366431626434623563666566356562383031383033333161
63356365386232313734356365336432636161653531623939323833663364366430346332376236
35383933356237623933303331353537313434626166623931613533636463386461376336303861
65373230353232366439333232656433356532613662353031346566323934323830346430343631
31393033333566313430353964663262393661643231323532346631393930323334356232636233
6561

View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHzXkgVT0rU52isd8uXbmumIYESKomOCCanK8VioVcXr cybx-mirth-ansible

View File

@ -0,0 +1,26 @@
$ANSIBLE_VAULT;1.1;AES256
62393363666366613332346263653439383031643738383831623930306563373935376136666366
3439383931666435303165643431383038316561323236640a393630336530396236356436333737
38333638336439396561333666373139306535346638383333623833343063636632613431353836
3633393765313866360a386164616565633437316262376662396666653035306434616234336461
31336661306462353333623039373763356432346330636563333363663263306336343332326430
34613766626665633236313530313233393861373438326362353338616662643735346539353662
32343337393931646438636365333631323536623235376539343266643635353539643738353338
66636436363235343939333030356166613664383463323864636436396335343138393462373464
64393563353932666230653463636565643634333637666430653762356165376234353930363466
30613362353562373036613263613464633061323938343938363639616365303664663138383735
63343832346364363934386464383832336165666536363363616639653131356330626465356531
36393762393261313866303366343231386434643934623437633464356164653038373834363363
32366166336233313833333861373238373636303064353261356138343033613464396663343164
38643634353336353963666134353537623663356237663264396634663231303037333432313638
31653661323566326536356566336432333735613838323033393332393938363834626335636339
39396265323331346136383033333630653162386237336363386461653064626130393133643337
64636162333530366439356536373130626539383164333139323062343638386465326361386562
31373564373735393965616130386237616637336665653962663165343136343730633435303462
66313531383062663264623465353761626634303065646566646439663165353738346431326439
31343037316330653466333335373632633939323363303937333534373332613934646161353036
33663964646564353738643037616363633339313732613138633562656633356130656631323538
65643330356339393537343062653439396661396236643961383136333661626631636337366539
61366636626337393939386231616537343733623130613030643739613032303932396437633433
64376130353631363833623131303734653930336130363332336636313538373630613763616135
6566

View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILQatGVxmyBMSyXF7fvH9ki7W0HMY3QXWZgbUnvJ35rh cybx-qa-main-ansible

View File

@ -0,0 +1,25 @@
$ANSIBLE_VAULT;1.1;AES256
61303063386161626533353437366466346137663062333165323330346461316135326637643534
3537613138306565383330346238353031366664613033360a373435653630373462616563383338
32613635306135323532636165373733653563633761653637303636363830643239343132643430
3133303265306265360a386463653630663532333530313837663635643432663265323463356133
32656330323662333235623632343435313335386433323438646462656631383039303266313431
36313134643034396239323135643539323562643033633464393165653065366261343265386235
34363665636434636163393238376436666539316237303131656263316161353862383230383765
66336434396366353766316264356531353436313734323835643735666365326366363737346662
39666535306535663233363834353564653162666338643562306136336330356537333166666636
66643533333934343830306430373166383836383664363261316363633761373862303066653333
39633861363933643361383233356532643531336530623333363866613836646365626533366631
62323062313336316634643030376335613733366536613232393135643238386361373465313836
61326665313732653831633863383232653532396365306336643432623332356463353138643962
65626661393531633364303032646331666264353338653662393065646232333563313064393333
31666236356530373931366362366261306230613832643365343630653163353332636464336563
34396635633930623233333964336261336333616430316563643932616137376132613363643336
63633739346331343531666366306661626235313330343436396164313632343733373761316366
32346433633731613732373962363261663236346130323037663733313862356130633966386430
63326363626238366265386263303639316631373532343434363563363935623530343666623064
30383461636632336364323434373437353431656337376433303032363039363661396365653364
36383236616334303866353830363836653366653062323366346430336635356364666432613761
63376434313738623431343739393130663931653766346631653261343932646466623961356666
33376663303366353834636263663533663362353935353037373236353131383662626164303564
35616133393830313931

View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPghqDwuy8x6/SbRQkE3Tzuprhxi8hKvq5FR81yVvShL env_7209

View File

@ -0,0 +1,136 @@
$ANSIBLE_VAULT;1.1;AES256
64653338613638336537383130383034323965393737323336666637343032313165643236643662
3432313765326433346563303462313761653135323063620a653364363338336638333537386138
33626535396338323964663462323034653333333665376363643236363065636133303336396337
6436373533366433300a393534373839646331356237646532633663663234613437303963303664
37616438616432346630373231636535666334626662376230316336336139356130356637386234
32376132383962393636353235373331366232323438383633633266613438643430336331313235
39323465373631613465623565393837396236383639343230366565393132653134336332353264
33633131613636313834663363363966613230376535316365353762313038333736333335376566
34326164363030303439363133343866363964316136376337383637646636303332356364653434
63313165366462373565313164643162373834366135663836346237323634393831386563646538
62666232306537623831656164313465323264663238323633623762633733376232333833613461
65303438623263303634663138303636323531393334316566333265643830643066396261653232
62313939353765343462626137353939366235306563393033303134323334643664383366653937
32373434383966346436303330363462353438326537396165396630626437633538646333353765
63306664316261663234653838313633386466666232363265393333633036326665613832623735
35393833306130616534633231396232643564633362646363613966633931343535616365643765
32623734393930616137386430336238326536646334663266323538376336386438373338316165
37663332356333633864363164353339646632366333643430373836333636366233366464663532
33393339366361643635383466373233363632393062306661653566613036376434373832333734
39303533383963306665346162663135356565386139313064336532393332623532633036386261
36316531303330313730656238363437363335346664626266663264646138623730323063336230
63376561653438393230323866653331666165343961613039343137396535363534353539633966
30356332303732653865303465343463303935333431663734333931653237366561323131306633
39336334323537613566363663306338626261333632353964613338646261356661316534616532
39633739343239643765613933393565366337626632643066393363663238396634383739343235
31356331646266633864366137366631643961653965626666666433613737323134613731343163
32666137316431373430316431393938393337653866386239383466376664356133303135663434
38383138643739666564303266356465306436303661323036393735353738653961326433353963
63626366663435366636303164383534613531323535323133383663346164376464373838623366
65306639343536336435616134333464303336666531633561613336663739393864653238376565
31613163613430643339303763643663303430616566613865333063393361336134373835363439
31333366373064366664636536613932633463313763636536666662383764333238626161383435
36306666313762636631666434363065636234356530393335396431333366313965343039656634
39333363383361383835643563643334383833383138383365633631303930326431386461363161
66306637393763343337313337656439396438663237313336663431656233323464393066313362
64396230356535303231343764303632643635633062356638366330396231383463383838363530
63366432343065346531613734646633393638653132383332393165353064663563323739393966
39636235653137396563373333323064303734643862356335363338616165333766343136316461
35643233643037313063366661333366626238643634366630386564353431313930346331306332
32353133323833643031633363393138613165643934663731303463316432323330306535636339
61346263636338386633643764313733386365653238616461326463376266323730643163353665
65323237353731363863663737663634393235333133366336653261343762383732303535383833
34393466343737343431613934613361333431656432323862666361313462633138333133373039
34393336303430336534386663363764303362353236383831366533663538336635316239393938
31623535306137656263323864623166313565373339656365333764613033666238373663616564
62313735666230336635383865653938333564653237663662396464306530333937346130306639
63396236373864313836346532643561636263393964666136316234353036636465653762613636
64376535383035343038656136643633303133656165626465656630663130653534323762393535
61303534626632636264633233656539393932643965336230653432363334653236653533353062
32373061326638353730363362666565653637343338386433626265633938316232666133363538
61353139633239613965363164396331323834323334663832303339343465386466643433333662
30636239316131663661306132333837643830616139336131623831643961336230343332646133
61386434353135303136653263633339633835353433653437313431663536393564343665643930
32306234626138386135336661616632386162646431656461303531343961396337626331393064
38373038313334633938396237653330623639333236383862626430346437646433623762353231
63323533633736343533393135623736653332363335616464666563633662666637626361646635
66396664326531636163653032346465333263663035633439363837656631323332313963666238
33386431366166396466316363313861353432333538346261303735353739376137613038393964
30383264366130326164396136613632373938633131373930396433336133303865653035626432
31383034623736306163306264376435623466646435316530643530636233386432626234613666
66313439313863623865653334663161653866376130623366666637396561613536373961663939
32636364393664653834373663393737393133373932643737346534353432343430646337363364
37666265623261623735616536373961643962373765313930613034303438393732663732353133
62663863623864316337626636343432373036306437643738343061666536346430326165356563
64623734626535343339643062623463336339636231616436373563333130326532396637363135
32626164663536363437656435646434663533663131653866336635356239323535373939376632
33393732356432336536316130356337306661666134656431636161636262633636613064636663
62333034616234663732303765363533353230613033633236363666386462336333383530366635
66663534323934353530613662373730363466373938653732303561323033636232393333656562
39366631363464303837653235666664333134333130616332636437626331646432396130666132
30366432313137333131663064633661373136663433646631663033326362373163393163373164
35616462623933616162306136643465306261343865653366653162613234643762376364643764
34303635343263343962653361323233326431393138623166356362313131663734336162386639
63353062346138326666353134316662613534393765336132376266326131316434386231316162
62383563613761653162313631663063613833646530303533613337316337623265616363343461
36316666616537663538333731633635386636616136336436623666333933626631353839323836
65343664626333303465353866663463356465356261623566373130383834373730343230353561
34343366663633316335313665373337656564663336383934356264313363333731306262353438
37313138323532656430313839333232386137376437323864653333626461383136333564396135
64326639653962313433393064396633653937663237333130636566323839343533353465383533
31316531616266656236393862356361653761323530633538656436386566663635323665373735
39316537306336643430323333353230663163623334343930626531343330313239646230626633
37626562343962333665633539663330626639336631336637363231366435646138616134373161
66363035633864653135663639646562613931323163663965643931336534643939323131326430
32313635373161626634366631346435383236323638626664656532343365386637623465653738
63313335346131303562353838306630366231343035343033663762373633666337333635353264
33303539646436303832646239623538323062636563653465356261386138393864353861363465
65653763663130636236623832633339636164613431623763653863306635326235386631373733
38616533656562316663366561393865313237386331666232633530666465646263643234323839
37656537376263613930383836343530323834663237643864373639313066383761346639643532
32623764393939633430633538353533316432653137646564303937393161656462353733366563
30323433643366373936393333656334643738353636623333323036613234643264306461313963
64376538323664343630373833333937663630336338313338356566336437343562353364363533
62366332323238343766656433663264383830343161323166316165396532396635396430633432
62393162616266336662303439626430346138626339323538646532303031303735313431343365
39366537666534366631356165636663313138643136323863356463363866336334663534626134
36333037323135373563343863366263646631343262366331636536356465396333313663383566
66666434633531626436316261613231343261333664353664363266386665333661346263323064
61303237383738333235336431313263303262363566363962666537633265323538666162373062
38663137633834613830663434353334613734393062663631653735666336306336633262616264
63623766373531366339346138323334316634666335666561663432306366656131363838366334
64646333663063396136623162616464636537633435396537396661633866666539303064343630
34343262646332343634356532356337646537313139633239626533656363353565326161326637
39626434663763353164376238343364636230316566313463373039383834343234656230373337
38326535663033643034636132386437656337633366353265383738323734666461336231636664
36386331363266306230396138323037643339383737646634623163383439313765653537396636
63626366353161633034653235633732396466663135653562386635613565366465633865353439
35653234393038623161613662656339353930376663613133613461383161663734666561343535
39346538353937333838633739313332636139323932343461383834326165333038353939313638
66643233623033373932313332353862366364343263326636623434343265333438346132323936
63333366336134393235373533373632653336353366376138333731616531663537363663663139
66343831646364376131633065623435653061336162396230383431336233303731663430323734
37373561343263663865306663633733376461393061363762353532386237383062373161363034
65633164306462656365363330663665613237323136386565343039643934343532326364653761
36623831366135363831306233653933636561643033343239323434333863313339386530633036
65333665623730646535393964326534393333393537356564343730313764303537613134626334
36323864323739396230383166386631333561643333336361623032303437386561376538356530
65376236376561653365343534316361326139353038646366346166376638333237623530306265
33333136313135383763663661386633366637386262323232656433303562333066623634346262
39633331313562643338633234633163393039623534633935323936383666653266663336386436
30653535316233623539666265343838343639626531636130623139323533626261653764613834
31653338363338373932663135653564373031393130613131356364343031663131653738663262
30366462613337633234623732326136643864316462636237623066373836353362323033373731
36386431653137633230396635646363363762393238343062386238653564633239383866336531
32383664376661353435333564336664346665393661373136313132336534383533353161346664
39656534316239333433353966396436613633633130373137316139623232356666633765313665
66356363333461363930666437663166333233626165623862373834653637333230613763373764
62656532303665386439333936386161383465636361313162626635366438663661363863313863
39383763356236656134363563636261613236343665353830633632396531613562386431306263
35326231336366373265313834626236633561613734313265626263326166653731653735306266
38313930396333636435643232333830303631363164646165336666386630373239623637636531
65373666316537383565613166666436363537396433666563613161313236386435386435363837
36396533633065303930393935373337666338653237666530663834396537643732316336306336
62333561306530363164666337383737353465353765306263326234316361333366633461323330
396530353132626634616661653665323033

View File

@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCL5gQBzV/ryc1FN6XEqUtMLwwt2bLEaUATRHkdnXknqsPBnSQF80+FIiZ/3f+RcWSlMX5mDe+pY1C2zwv+aglmGSqz2bZotLGT7Lt7G+n9xgCuv126+IANvoNDqeMdGd9vpUbSsUaI64zEBu4jUMEarI3RqRXOdET1j3Gz//LZMocfDuElbpWEISgo7WNhDLINuN8xV6eeaXX8JOMvLXmcUv0pK6cfJ83veqaNCj2Cdkc2p9gy/mrqEsQ+mDk2BWPNARDKAmOEj6eSdF/viz65ipK677mJWojZXeEN+UHcICcSpeDbF6LDFrRDaUB+mLgAstVR+dOpnz7biwpXta6bq58E8X8JtPo60gUUjJiTk+Ortx1h9ngkEwB6BGeqUAGcXT55gO90P1XoBtCDDbAQmB+STNg9g5IcBJuTjtqNTosMNHFzx/i1wt1q1A6SZiDeWH79RxjIzrQ2vnRnvZPUfgpmgQ2pWxPs3w42vgubEAZ8lhAd+cflok9o1aJljC0= vakhtang@vakhtang-SEi

View File

@ -0,0 +1,136 @@
$ANSIBLE_VAULT;1.1;AES256
34623665373339316464363162656566346562656331643264623066353464353936316332333165
3161343533373838633234396633396166616364646139650a383039343461353766363661396266
66396161326436663637613161383338303561356631336330303538393933346361343761613436
3566373337643232640a646333653833393633626163623139623739643533343534363634366539
62636337633537626263366538653633623732623235626434393432393937346232663133303566
38613630303634353434623332376231616365313738346336333234656231613130356561653336
37303165356539653862336630393561393231373236326135366336336335323532346335336362
34366531656139336162373334303438323032333266323436373065303534633165326366656231
36633437643733633639616264363235363732663630376631313561376665666231346336316433
32383538373464393062323766363837666432363066653038623163383537323234613933613533
61313564366464323534323733333731313036366132343237353539373164383365643636383363
65333532333033383865343863646664653834366433366337346237333537326335313335356633
32363632356431643163343736386564393036663634316339356533656336323530666236396535
66316435333564623265616236636662396336653065613237373064303730303738613965376538
66383765323935363264333561316133396136333366313730383636333239323834343562396530
37636538333661326464623066326335366337376566636430336662316466353234396238383439
31396434356138653965373562373263666365613737613239386463353730306232343239616536
37376461666239323762643466376633383236653162313139643433303136373930326539363738
66343264376235373031346336393936633036373333653631626662376338646437363062393135
62626135393735373632363032303265386332326466663732333963636565323861303033363963
36356335303662393136646133653962366363373434383037333733323433343032353065353362
62393437313638663039666566363333326563393232336466363861316634666239346134376463
35663735613362386532316162373739353639393564326264666362636231343134663562663532
35346435306262343964373536636562366233616134376364653039636465613362613461346564
63376365623965633630343237393430623835616466613465306537383461616531383464653739
66613334663839643836393462616135326239353965393733616662313831353737366339336330
64373133383230303131616338326361633731343963633766653734656536326338626266656166
35383938663964376433613234613266613338366465613730386662666366303531373538643239
35653331613531353832656230313131373165326536393031383538383866633733646236643332
61366131393533633336623165313161653230343933623935613463333235643132393231643764
37306635323035666432663362336434653264386534366136623764386131306361613938383431
36303431646430373463373864313332653436356537326130383332636565363862333638653437
34383138383261626631613631323664333661616334303766373736623738616534326531356535
34356634393331663537623939373766373737643265393063396635363339373839616363376132
39336264643639373731623461323939363132383163663137333836656235393634653337346465
30313830363566306335633735353635613636376566313136386232626536616539633066396338
34336232643933346465373439643933393961316135373130383963326236636431316233323362
63373965396464636234366335626533326539653032623137306131386534373133303166373238
32323064653531353136343031386263353463396137383933636130646362616466313961666261
39303732386466316138386264643634663038663335663161613632623338303731343066636639
32393164623639313661643066643332396330393332303036333064323261636631393933356361
33393131353436393666646263346437656562306338343038323465323335383131373635303231
64313239373838393864616138363134386630646436393433353835643135663132633364323935
62353436633366343238313837363566633433356463386262363765303235623634363061643837
65626135656162366665393836356565356638623163336635313431653937323230316338303230
62393663323638626337323331393135636663613938643862653961353763636432383036633635
65363763646463666338656566343366303334613631323331646337636637393861623732323363
35316134303061326431663139323035633830356333333763313664373366346235666538326135
30653339653234323832623032326335363264613063343932356665303465666566363565353631
35386265393066646462623138313166636533353938643531303531383239343066656561303233
37356530643262323132623239303461393763613933653564306633613139626238343431383732
31656631616665366538613664666635386131366336636332336563386135386234353461303835
37366430616361323562383634303938353437316231663738316335613365616630333634653165
33363738653631613266346532363632666162663232616533353966626632666239313735383738
37313431613433626231663765633833333661346239383133633965646537383561343435623138
33343634323833653234663363313761366630333939386630373462383930363061366466346131
61393061316333386265663431356135363330313061646564396636633134343164643333396538
63343435363665613466323265373631373033386161613636626561633362653863333737346466
35313539366631353134396430636264616164633034343133353363623036353432643063656633
36613233303232363638356162666333656566343339613733373332643436653466326135393134
65346134613337646331633535653261613364313633353631663964396339323733383239626435
38393638643137366438663631353765353364353962343936626464376139316634336331313961
39663464343566373333323531383330393836653638306433343561333338393531323761663437
35316632636339353663323631663766336631373761646332363965313062653661366466623465
62316362616535646235653262366130336265383864323233656163353561376666383130616434
65643733623733356163646538313235333533623330613039626136666131313363376563646438
62623462643364666563663238626132636637643832346434303234623164373461323536323330
38363162653530393433643161343265333238623763343635376534626262303264336533653436
39653537333338393762613061363461383932363564303536623330313032376533633535353133
30396134333437383033626635366263666435323534646138326263316562643762653933343431
38643135366236626365653535343261333032356266303538353365313433396633303764303332
63643564626161393330393562383463616637316265306130313839393164356137313837323534
63663065626566313335353738356133613031636239616663326263633362633165646234616634
37653730636338353963653833366565633962666633633164616662623933356237623266623064
38636434646562653664393164373662323834323830366363393832303739333734346532613430
32393637626434633036343137623130663263373337623237343235656162303965636534383036
34626434353665616564323739316163613738336138393238303233656534396332663033643563
35653362323464613263623565333565373439373563663262623737336536653966666363356562
32306537323561386434613831653762616132636238353432653333663664323566323963343032
35373039353332363735343764386462383939373161633862363235633332323837303165346235
30386636336561643730653964323332333466383337643464636464643763613339333433326133
31653636333966393639313236666131346133303532313034303136643766323032386365626432
34386534613430373864393437626663336539346134336332363935303165623936343736636262
63303562643831323837363535336130656662393131326265303336353736393333393833623630
61613939323930393332633262613865613566346638633930666433333761666333343333343735
65646435303634316137366630363263656331303466376432663466343964303530366661343035
35333031393738313663373262346633616664316438343434393239363166643665313461306564
32363037306236326362383035303466326134326631313436346664613063353732373738613836
62373337623531616130393763653739393261376562643762663439646533353666343862653664
62663134346136663864663062333261613235323231636430313034356133333938663639356666
65613266386235653939626632336161303164316666373664353536333865343635346539363365
34363565396533323137363835653864336338346536343661336561623962333935613638343432
39353561653538363135623762376239616565666636636264616437353433363834623661396435
34306339666562623965366131623630393139333638623038656534613531633139646330643661
64326639643065383539623938393739633063346636303863326565363731363132623234656132
38366535346133623136663531353963613465326163393937366565393037396164373265623431
39393266326439326236383039623136326165366433356263313465633733613064336264323231
61613166643162333164653931356330343362636136656262353130373130326236333862373632
37346566616662613164346636373634646361613132383431306263623165366264663139303633
35343431353261346132333664313062323561303937363463306563343630373866616138333366
63316336383834303531663637396162303864656235316136636230616135633161653132656535
37613132653737303462383935353864353435303239646431616439373361316239363565376664
38333331313763363835346636326639373731613836353230366164393233373964393166386663
30343735656463663835376235396433633766353135383862383937656337336137306239396564
35386434343133636230313935613265613465656666313436363265663935303136346139376330
36353163623361633737323833626262613866623365666436613332346433363638386631646463
61363764386566653664623538303930623665633261663339656436326638646535643964343663
33333638636164343963666633393466613632656364343961323234633866316433343462343932
66333935626134326533396466666138353933353533336162626462623564363236386335616239
39396137643838373738393266303537303762303831643861663865626230653865303034656134
35346439306264656161636337633463323962366662343734623237323462663239636261353538
65343831653334623636306462363863663536323861346438313664643866306362356633326538
63363566613236666135646565326562316635626639626332393533316231616138333633356135
38626563376336316530303963343733323136373634323764383036366135393036616563636165
65333739623531326338646530623834656634333233353237306332333832626331303863653935
61383433633738393832643831323735623634393061356331666235396632346565333531393365
31373466303062363563383063353162343235333035616633623165383161343766376336613435
61633862656439353231323365623133373537336638663436303266633132303936666639393461
34303063326133666363616533623538666431353866313662353931646632643737656264636562
61323831323165653239303937656464353064333337343137356262336466376636363335393137
38313435383730376465306361303633363734363131643635633238333866333366303334633361
37653839363762626332613738363864333563663937333137373663383065323638663831613431
66626231656231636537323463646431373632373937386530616434386664356432366632353561
64313538313038666631663937383232393037376633373066333938663965623435313631633263
38346336646137383538393761323761386666303365366536663432653335346661633865383165
34366664666165343863373231366565386435333966343962326436303032373039643034313063
64666130616337636539376664616233343763646661396563356662336639633339623030613633
34326136333762353038306632383137316166656539333231346232666165376437393361326366
66333461626131653537323832393635363265646364353262383631323930623830343732616639
64666664383637326632373863666663373161613565613162396338303638663866376433653235
36626465323030626333333661313432616462646466653335383565643961633433663932313039
65333237353835396562653765383563636366353064663066626463356565633235343866333462
39323638646263646566616562663865636634353332303965623632656136356665393264633961
38663866646136316264316237313161623164396165353832306137303165323837336665383364
323763303563626164613861336236373766

View File

@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCHRAcHbSYuX3e2U5+KQsuQbwoQRozOSStNmUR7yaXF8VuCm9Zqr5sKZ46gfUtrJpe+9wT9Edn7eVEWo0BOl9l8o+9e8XdvGGidb+6M0Vgv9MLK7our/kGRRcuRwl48ItSTXRYjeAgnmy2hn78gKG5n0kMe+XTYub4mZ1WzMoxgygqEdPMdnZIsEDR+tsnoJ75PB8k0x0MIRpoTq2jjOKQOJRg6+spBxmM4hQ41ofOO2HsWXn3znsa9rhPjxTpif+/6/kdxIyJXle4gHBsjDpuVGhKIfGeVaHedDdPZepegaclLjrSsrhZ3ocqG7f4CdPOxflX1LM4yRW4g7PtQFZ4IbKKd9g6JNfpOfS+fMnIManEG2WSBbrjX7Rm8xeOhxqgwiXZFzBMZqi9faBXqM7JEPi7Kn2Vhe8Z3yoQLOtkhH/z8Jhlwo7eE69Z/fw5QERx8zppARr9XcHjTu4QubOpO9a98AKxqVrCYXHcI/rDhFZntuK6wOnl+s1PeZ6sxtQU= vakhtang@vakhtang-SEi

View File

@ -0,0 +1,134 @@
$ANSIBLE_VAULT;1.1;AES256
39396532626338393730643230366562633335656435306663636266326235306238386361623261
3239346230353561653835333362313831646663643936380a366432313935646138653935643132
34666531636535363165316665663337643066333434656430623136336535626365616366326264
3235623238343636660a303936383532613736643561356365626363373265393930343264353330
30653266613364363061306435323765386563613566373437363266646439333138353035633132
34363763643562616666376236636339656265613732323463316561386537303566373034313361
63353566623738643832383137666363656663633939633962643932346461663738313533623131
65616565376434373637386264353935316164656464316363386237633730626566613734646266
36373735663135366565633330653834363533376264656330393139646233303765376432313832
62616137636366646563646433353733363833376538663463336133323162626435313035376333
30633933323438336633643639333261613237653061303232306431316136336662343065316333
32653964666136336631383635376464333061393161326361666131346132366438316163303833
35663434373637303832396639316165613037316535613964396266613632623133396438653864
34373235663266333939376439613233626636336364306339323935396437363732343966396133
30306664363635396136386637343837623532666666663333623362633532313130626631366162
39363136613362636362376633356437333562616563373332643864636437643232666335633332
36626339633133346532363564316462326430346133316435343235393736653364306335666630
61653962613637363939393438626665353237383633356561623136646635623965353164376335
37643165666130313664373731396438323532393234613130396134646533643132353636613834
38363730616461626133356437643432316239613261313463343561343238383139633565366630
32353838303162323234336335656162633464653465633065323037363337383737316333653439
39323137363335643531383162656337303762393132366235663662636231643761653066636338
66616634353031303863656265663738373639666634663765323131646566353932633764346362
62613031656261323730653639663830613564313839326136346436663238633964393332383233
66643434363239613234393636353532356134383065613034636134393664303030666637386331
32366339343365313335643464646536353434626333363563653665653231633663376266326264
35633735306535636537323762636163636133636236386562613961636363663233623437383437
32653130633639346361626433333038363836613437373661363737633734623337643731363464
34353665613431313232386535333339303563383034626136336265633263613532343339363462
34613933636138363230633361616637653436666163316136636638376336373138383934373261
63653965373237336437393266383938633036613436663434643131316632353264343439656432
32373730613731396638323166626565653030336332343631336135616134306334346331363965
38373837366530643332616131343535653731386133613561653736343561383764336265393236
38653166376337306133336264666136633730386362323135316137353935303738326332303463
65366333383563646538323862616230643562393364643533306637653932316263613535636237
36396666336539396132316131353739346661356231656562663563396565313061633766653039
38656263303361333464313639626165313538663764303931633062646264643236663530616164
61383032333932363965653632323666663230396561633661613061666366303333363835346435
32653530353433663764306432633031366562356634386332623937663231666130356333353933
63306333303737366364666538393165663065386132613932636561323938326238346338323937
63343837633131343965393365313432303739326532356132626333666133303561333230303333
65323263643237653736343533333033663539643262623561663535643430313862613932623461
36366237643032633039316266383837663832366362306561373065306366323137643631663233
38303933396362613636653037333162623362356164396534386235366433626536343330636465
34653335636633663831353535653864343639663663663338323763316134383030313763633466
65636461373135346366333364386163353632313766353136393336363931656630643139653066
31656331393238383630326631336463346266613364363830626439346164633136363965323436
32663834373337383633633531666232346438373539343465313932366335366435313633626436
65333732306237303661366437653332366663323062343634383962303330343562366537343863
32333865363065346434386235346266626338393935313635363730323661303862616436383730
66353030353833643638313631623164313366656231306632346436323531653035353265323564
63316462356336313062343938363532386633323034356534626237643239313766623462326361
64303338386530653564343563656633323963663730616536656636616264333164646161303839
38316634336265623466663765303962653131616630396363396434336461346164663464383262
32316532333633343031653539333730643931323834326663663161356163396538613237643536
66366136313563396464613636316132666335376236656137383039313934623963643335363766
66666262383139353336303633376661326364613061616261366633653233663061646336323136
30643063303236346366363032373261386263343337366266616539333561353734373238356530
65336134386432393066333135623334626665626338306432313961643230646133366633633033
63303533646365313837343634313663303831346465626231376466353866393737346430303132
31363632303832653364363034653130386238663266373834396666313234616531653835386263
65326563663961663565616634333233656137313161326533353234306234336635323934643363
32616335356232396231373433326533656361373635646166616230373965643162343236393431
64353934623636393739613639663331656466306139613133643630306131663733366430316436
65653638326635306362316663616538383137383132316435386535653534376563303231353032
63623738356166353739666530336136343330613231333933633062633531326666656139353165
32366530643731373934376466313561373834353930333361386461666163336639666561343561
37313762653339363535306363313833353963396266393731636633373634663734386366393461
30616239663536323834643834643539323130643431386137373866353832316534656135343364
35346238613432353331613062373061653338396339636331643833356530313637633635623237
35326133373933643033336434653734363436323765666565363535386233336261363762623837
34393138663766613631363363346364313261396263363965346636396462636632316636303036
65373766623336316464306661616165373161646637373165656561373637343538613439373632
34663335303533336430626136343937386665353134623465646330636462653930396665326538
65373464633763643239613932383261356634636232366363636133663837653332363662343262
66346431363935386161303762363238366461646561663330356465653337393435346137643636
62343733303636396134383964616230623632393437356563653733623035613132343536643730
61326235643562353833333835656233383438633537386464663939616334343833333733323232
37366666326532653733376631333137356563303666376662376433343463383961313930633865
38633963613130356335333032636131636466366462316233346162613139363036313735356637
39663365303834353963316166376337316631396338356461386630343039653163356535346535
37626536373166383638373830336563356538306262303630616337353333656263313931396536
65353936666564363537623032373638346136613932353366386564396538633466356531356462
33343432313563393165363934336436346235633831303932353335346231373938306665623338
31623865633263393230353738386235666537343633633334363161343936656437336331623238
32613932373164663632313937323738613538313862653462376438333065633237363964346339
34636332393461663364613532363539383765613432323131623065353038316362373737363730
66333364333761663566396466653634343363396135393161386261643031333739393130343332
35653037303362613461343763663662613133343261663939383332346564616633636333643962
65306562333766623630653030373632343866663665333531633331313166346636376430313930
35616463616236316662656563343835666162363435303466333530333835613032643166363361
65666230326262333736333035643363623733316633316532353435323634303566666165613732
65613136343361613163316234646665653962376130393937393531383138383333336663353065
35643661363939333935313933663332383439366538656166396665353432623862316637313030
66613831623164326632343066653438333932313432633435626264643932643636613465326636
36333933333765633461343830303261353962636439636531613666323734343366313535623234
38626136356430623463313431393433353162366133626661646436646234623566333032663436
31623462656638356639623039666230653230373535376165646336666465373736393630346233
37333564613462653361663633616632373432373566656231306337623264656434383663393736
31306133626235376437306239633365633463326136616565646433616632313932306566643537
32663132323862616261363932366365616238623630373834636566316565383262326230646538
64333765616563653931633333613232336535343438666561306264383931313935653761636563
62323063366338663231363032346339306434613363343938336231646237386665663466363264
64653832386530353132373630336261336137623839383866313263306133643936303930386537
32623032643966333561613738363432346139633634633632373635386663613637326439343365
32663938383533356264323262333461386330613065616632346665303937316364303434346534
62303866633463623563616364303866633335313865366161663332376238663931353630633166
63353535376634643164623836343561346339663932643863633639616231643937383961353639
65616264346432666465633765653164363639643637303134323031346339363938363139623835
30643839653361656237356237626565353036393238663437613965366237623334386663636235
61356163333930343235613934613265326464363038653639636662666239356461303930633832
37643231633562646631393466656236343065343466633861626632383762613437613863396631
31353434343839373035653435656166653932383764303231393964316334366337616138303163
64326233333837306362333431303731666139633430366163323463646463636162323231303762
37663862396163336262316363323963346665643834393561326537326466343661316465326333
66323765353261653232383031303735646430663831623533393738326330353565653737333639
34616138343534346565633439633734336133636535623964343237343739383738636539316237
35326465613061336366333462656133346131366136323431303136623531366630343730396662
36383139393464393439666162653830636363613231303932663832363035613861633332363566
32323730613566333037333830623765656638393464396535636136323131616135326235376430
39323663636262376338633565333963653365393063363835626134643430636135303338633466
38653733636136663432346538326464386266663732366464303633353563613637616336396130
38303865616430613661376538346430333530343533626666623835353232633832623461363233
38376538383131363733346635633739373634633036376630366337326631336134353935326162
38666534643062623230353037626334353465336634636636303831623039333238396364333463
30386636363835333930633665313563663139646164303737343539383366626462383535643161
61376339643866666263333661643966303734313263393039336231643637653936313664613835
63306237663933303964323861393230333763343538376563636630366366623566366465366363
35376235383462356537613735663461306466373333393733646435666462363465363536663130
31656638633261623331346434353133653639326334343432373634346561356436346466663665
38333133643539343133346165306261373264633332663037356138313632313063333138396138
34333931313034316462326465663865633235366464623163393766636432353737313937653639
62656634656262336435633166626637333161363765666364346536633335306261

View File

@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC4fBnBDdM0e8qPL+z6jxazicserryFdxER1Kfr3yg5LsLjG/ZTBpzfwZWxCoj95fkfTInBpaUeFvHxPItxlvSEF7Jo1kWglh4fk9Zoj/n8ItLeJPofCd8aBH8w3Ln1SPvAbeSm3U0gBRm26UgxKHG+8DvP8+FSuMbo6Bk3LCNztAQs/CS4lC9m7BN7I7yfM+Omuk3mveT2tBvEqR7VW/Kl3J0f34dKQx3jcXDoMEsBl6JmUfW4n055XKMAZV4CROR5Eqo40gNsnGUu45HWtpQuLzTsuurymWTXzJUD4UN8ufbucGtbcZkSjYu3vvdhyMz1lAXQnkjiowJcXUV0MTH3oNLPS6jUDc6sc2nvrb1DI/lk1e1yfZriIRa+R+/WjWxORONq6AgtyLq/36dt1o0SQoUcrrC5r7ORjvfS+jHE4BAPvMbC5kdjVLJ14Am4ZEQll563UAFWjpTH/fB0lL9cMcKTWhISrhoZFuj8qLZpGwGsvWEw9slTZjhqaFI316s= mee4wah4me

View File

@ -0,0 +1,25 @@
$ANSIBLE_VAULT;1.1;AES256
34356432373738326437313237383462353639363863346232333634666138376563323530633063
6136303164623365323235316636363663653462626637350a656132376535663062666461396431
33353833303830343137633062383532336637323461326636366165336662343032663431323965
3338643339383461350a386530623234336133353236646535623262623734343539633236626462
63346463346337396235346636363234623630356330646134316663353165363935616238356362
31633035663161396166653635336666373331626665333334623765666665333934666364323635
31336562366436626463633531353535383130393764663339633131353661353366383833333135
31663539646632666263633461353838306633363438613465323738333031613564646335333130
64646530376439666163383263383366643865373437303031343161646633356537666462366439
61663231626137353631306538306464353965316561646338373335656530306335313063376338
66663464373762333036313032356461366465326539303764316233306230393235333337613433
34666530373666353932636233343164643832626535626136346238373730393362303864666335
35356438326631373466656239613936376539363336613633303738623337663466386335303736
39393163393336653161303037646231653165303162343135313632316166633533366235643237
34643565613739313831376237383965303761333338363232333366363664636363633736383838
61633464333763373065363930323062356161666332323234393361366664323737626465303934
66356131653039363864653537613466366132646532633631323864633730373263363533306266
61646631363537623439363765343461653363336561343766313531623936356462333261666562
35656431303736383238393034353837306663353639396362353532363335396133346532303939
62396532653461613030346364653562323538663036333038353233303335353161653538613130
38306133323137376539333833313033353437633732333463643836386237343032613265373865
64663665336435343062636665366236306136376264346564373166343664613637666539613965
36316564333831373462643432643335356538653536373261373831366334313739336639366638
37343763353239386232

View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIMkFz51PuOhaIsGA9yU0suKYaiYvrLXduYZWrXtz3u+ mee4wah4me2

View File

@ -0,0 +1,137 @@
$ANSIBLE_VAULT;1.1;AES256
34653832386164666635323637346366383561386263313330396661316632613366626661363630
3463313137356338376139623665306333343138643131370a333031353030376533636262626565
66623938613664646435366631393861363437633433306336313832633933376364356538303735
6436343364386166350a653138623633383139376139303535396462643663353234626562613933
34646665313264383735363365623931366364303865633665316530616564313438323439393837
34623164313536613735356132663339303766303835366536653633396232653066303861356534
34313930653365356134393261343538303036343338653630386234363136396365386162316563
61343464653066623262646135376234313862376432633933346431666535613661373931386161
65343835303861313963663962323062613734396631336332356163323431363132616565623035
37646339613833656163353038353532626333326635326464336634323562366462613861653437
62613131663634316230363132643539376161373031303138353536623139363062376163633139
31303336353333313362353331323638316334373731306332353939333839383831396466373033
34376138666363636236373034316133336261623633366664356662616430313132653737623934
36666233663036636364313630643631343036363566626231623265333539643364663438666563
31326432303132633530313131666335646462646637616138653130386361343034613261376563
66616531656634376537386239343538326365643962633538633431633061613438613538336363
38363734356463663663363633356437653666363534303134643236313030373733623465303364
35376161646266636534366538343666633863346563633963626636636134386638313833373430
33323065656563656338346262353464333337383239633863353534643936663333623538616136
34656537633133653430386537666539303336653432623063366362663032356334663539353630
61363730373233393230393830643838306631386430623233643665386264373834383365343839
34323636363430613864363864643565653330643166643665656563656238623537663766656334
31313533393433346138363538643131353733353332643236303834303064396166363263633134
31383463666332653866356362373731353133663562326263626463323335623437653833666231
34613833346463623432303230373339316162306334626463623435303964313030333439306265
30363335343861353634323764653437623961373765666538333137373737323361613439356465
65616635653436663265386637663232356335653066353266336630373033326539326332303234
31653538613237396166623964353461343966333863333036323265303038386662343863303738
39376461323364396531333265633137393836333234646536633738313361613730376339663762
62383863653763363536646534656333353762333364343262376435613330303239356462346265
63666138643836366135303133653762373439356364666162643461303835346239363036393966
61646134376136326230323333303539396232336430346236656263333039333935316561316130
64626639323734386535646630626437313138373430393735623237303961363263313165636533
37623232633831356565636332393262663365363163366335643037656236633333623234366565
33373763663531616266333135373832633763313332373165383435643933623530373937343166
32323964313131353634336238386165353236373666636538633565666239623962383865636264
64616331343631376430643634613231633031313964343464636637666333616638346634306233
35303263666333353561323432633064306563386231373732636331393838373637363236373739
34666632383561393730333831613661393031356237656237633435346633613663336663323263
63626332386538373063656630323039626438366633663337323830613533396130353833656335
61656638656262633065306561346330653135396634323361653334663134623832383865643032
31653531316537366435343162386662313538643434363530383532626530353861323262393038
32353034373031633235636130346636636463613266313761613030363261383364363632393834
31636238356130646531363234306233386538313835373330316666356266356239653730323837
38663234383666346639303164333238326564666638326465643935383862613263323662643164
38663633656431626634643932366436663330316230356564376534613435356663623266653933
37306162306534646565343730666337303766653039323034323562393139663963373034616133
31623361646332386463343635353535396531373436346634383132663761336361393136396435
34616265616563633633386438343433333030663239653266666366323531386138366638633131
62323536313063646638613337303666333762373335613332393038393865306239323334353865
33303061336636626462653163383430623863663266346463363539646233303866636265356566
65353564336663303032623839333934333539383263636137373631303336616135633738356664
61623461303334633266393064616334323735336563616339343938313332316363633630663664
37366331303436323338336332306130303264333138313634393765393338326561393433336539
36333235343562383238376437326565633063343636303563376535303834663332336161646637
63643136306332326637643438366134613232303466383731346338663265653937376236393061
61346138326632623639663432616536656533623766616637383566656634666231353936356632
31386135633733383837383930323936663932646435386433666536656231336465363861323364
37646333346165643834623834363139333037373566346664363166303734633233313138356634
34343563356539636562306337353935666362366439613134643135346531616536373830363337
30326433386363396461326535373831353832303965343039643232343530626266306465323338
65643434656339643935343336616533303538323130656261303439636431653931386138313131
38613231633932323830303839306637623639313539373532663938323536343566353938333339
66373563346232636631643635373234363539323065633266646636376464323531313231646265
30623338636530633533376263316130663138616232623331333030643030646231666161306430
34373165653765333336616439346661326362313431383532666330643731303036393466373136
62353664356664643839383862656565616434646236333936333832313432373162623064616131
61396663623238633030396638396234653934343633633263353265303864313032393362356566
36336162633231363830323366613430633031356637613530383962656264633062383364313563
62646139643338653864333364363736383834396466643865323534343330633634303339393634
32653730316331393135383431656339636230663433366164396661653964636435666231313832
65636435633034626138363930366538623661626662666538316236653563333330663363383564
39393064336536393236626461373532633937393836353661333535323337633532626466623832
30636266613731303331386632666465333464613733656539643834316337616661393438393437
64366462616433393839346639386262303633336266333364643564636362666430373232383639
62326539373866356330386438653633663961353763313830623335656438333764616335613765
33343265646436326633633236656137333534303739313161346436393136616665333834346265
33396636333131383137336436306230633539343338346130616365333139663662666663663738
64303137663964623835346235653765343433613139313438613532636430623136333263656137
39653037363863373137343564643134663761356564383764313730313734333733663730613138
62356331643030643262646439346430626161356332323164636665613763303539623935646135
32393562393834313130303038306132373166626636393135383835363763343132346263613635
39633034626539313934663861323535306233633239343263326630326231336164323965613432
36343737386566306239656164383162626466306231616464363461313632373266653438373836
64653538653139656666323833653939386233343936633239393739383434646465633831626430
37333261346433383934323461663032376337636165316438323161653833663462626635613137
33666163393965306130393032333063343333643331633263313766366539393665353366656339
66643835626164353732663265633330376561353034376365653562373037316664383034333763
39343235373131333231636162373231373435373661383436656130663637393034353136353236
61346664306363383766633031326633353163646632656361343163316635636561663833343166
32623433336239353735353239633339653866376563633162626639653964666237373164623334
65636436303037623534663337636266623363666463383238653633636563326561323633656632
63663435333566393231353436663239646566313338353038386439343731316462333362343934
62366137303838633839643834383537626335343830346263656363383034666632663537343633
64323036613562393638663736306335303165653261323534333763366566326130383130383337
37613962643535333764393035663363393666633333333731343963316263656661663833643161
63333730316131306331333563303562663766303065646535656662363266326563336163633836
62613033393930616639323662623862353134313435333462333638396662646430636163333431
35353836353262386130653135306635613031313638653336303461666432356639613964653638
38346434616663633439313035373664393230343835393739373061613737306135633366333337
66316531316339626565666438616364393633306234653966663462306437653763303832396239
64666638343966303363316333303432393564383035636239396537373466643866653137633237
66313237336335393462356237633833386533613730636133376132346536646435363162666164
30653665393164616262303266666463323565373737346234346630353965336466386133633933
31373335383930663765336537323436623961393333373638626562396263393864633266353663
33643338396332633333363831326338373232353039666432373738653333633532323636363636
63346231616461656464306338306366613866623333646465333662633334643036653737633836
32393037623337303934623162393436636332643238626162343235313864313233366136626265
66323530306139363636636463616433323537666462363063656464396331376336323965646337
37666533653764386162623538306136393865326237653635303737393965306334363335373037
35353035636263363966303531343964633737353737393731393839303934353138666366393139
33646136336636633731313138323662643764393138646264626634333566356338376364613137
66303233396661626236346265376130333330653563643932663039313033323765306462346161
32316562396230356234656666376438306636303135386537393663653132396330326333313335
32623733323130326237373861386537336339373934613663313236383065643335313764393234
30326137653531383765623732373534666464393335366464343564356638396236656261336530
61663830653935326337363732313061373238653937633562376163396166396335346664343136
37326462336536623966336137656166613232393736616365313465356239366561366139613562
38613665346361643039336232616264373431623836656632613133323630306230323864353235
32323330613536353464353762613937343164613235373833306338326636643834393431333738
34643664373366373031663963623537623837366330336364363737326631636137323336373162
34393937663564336538616334373238313261373038326266313765646338393238666562613766
38613830653363303865663330343538396664643938633964373936323330343139663433356239
39363338326666636565373566366333356333616136323137616461316462386637346637373136
37613865663235336537333361326561346362306462663366643464333131313564393131303839
61303736313964626634616534316239616566393538303531646264633632306439323463376361
37303964386532323566653737386534383563333666613563316431633030383665383065306663
38303132613637376637343765326238346232646133653664326331396661636439323364363732
34353936336233636335613838656533613163323164303831643938623663313766333530303836
32316265643361373565303537363730663739303866613661643936396262323763616632646634
36366238313636646137343937616166623237633666653936333837633632376531383533353434
33653833333839396365366239316462626235313930643831356537636335653034643737356432
31666133636132326566313161353336376335336231313136316530363765623462303239343039
34373733363433343361316165353833666539393866343236393566366565366138653439616437
32366432343366373230336562383834333630343335663339363039323534343066306230343261
31633961653066613861

View File

@ -0,0 +1 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCsetDKdeXXP3B8toTcTgw4IC6Nc7D1H/uTQcNnSkgTEqTuPtQ1qBzIVPOr/AuF19lKUUI2IpgBFs4TK1eZs5C3O9aPI6jUTF9L59tvUuJqCR2GfmwDG70/eYqSvTv/vZrGtEOplc+OuL6/gBYpxgoDk4NFWgHWSUDPYAtyRWyMsK5bog1olx8H08EUmx5a2rrCQdt85tNDOFILxAtOXpalSc40UzEAFa9gDqSkCjIZZvKjHHNmYNhAr+zYizagX+7lEfXAK/SiD9SDJQb4Jw96VXKgAog1Sq0IZWV4x5KZOxuwusLKN9kaBHX4ZayXAWOZlOoBBuggGYQh56fmqHMIUcj1NwzIopHx2mcuxrdFlw1adB67aGAXaS5ROCqvw88SqSxoMFQ9KiwvV7fY/JCDnEt27e2YzDFFLHv2+SzjHLxFuKkF2g4r+IfzY78ohd2w3E3Xio/TtEh5M9BpmSzTLIsx62APE/GAJm3ZCHG9OcHuISvVUIBAqW0bjchi0Zk= oasis-front@oasis-admin.digitalburo.tech

26
roles/ssh_config/files/tc Normal file
View File

@ -0,0 +1,26 @@
$ANSIBLE_VAULT;1.1;AES256
34363664373837313865633164653663383738386138396635643839616135616139366463626438
6437326263303933396236393961633038316662373832310a396436623038313734303639326538
31663263616439653438316261643030663732303634376439326331666263366432623564373265
3363643862306537330a386330313966303631386332633866316331646663376430313566303239
65376166363833333363323531386234653262636239386339336565663835363730376561386162
31636636616433643165336438636134326130633861643961366236323333666561393935373362
63303662386231376230323263643534353161626262383138323731656537336161623336393331
31336562393735373330613533373436616435623063663564623536323862626632623033313563
33366163666333623162656166663965636133633066353765643533623731383838613032383362
30643331626330376164623465303339306433346539383437653937336563623732656332623130
37313866353439646330393364623832643738643034313931393537333836323931613535663531
61356166633863353435336664336230653730353565333662653538326635306530356533353364
37316564323236653539646231666231626362343737636164396433646434326630376366333730
35366666346165663465316239363537373032643137333339653738666333646563386239376234
30393735613262373933323235336239386337656338666666336232643839386138376165656365
61353539623232653234303030666132323337333766356161616438643032373036323030653539
37343063313436336561646662666563663436366538633931306637656265643032333634396261
33613934616432613133386330343966393162386137303737663934653639383733643637636230
34326439326163633639653132613662353931373764316431353833393663653737663138316666
34393864343433356237613263393636326363366134613130643238366332313339363731323237
66383938316534623461343033326435613433656466623264336239393337313430353765626665
33373339306533373866383438363635393335303332646136313435653133313461383664316234
34396361333265613537663135386333663836303562343965663261623062643466616532363962
66356131663166386164623432613466343662633235646138346132363765346562663430613963
6465

View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAv4YjAUNHH07TKmBsu5OCaZHLmW4C9VZbQqNVFkAGEv vakhtang@vakhtang-SEi

View File

@ -0,0 +1,20 @@
Host *
stricthostkeychecking no
userknownhostsfile /dev/null
Host *telecontact*
user vgvenetadze
stricthostkeychecking no
userknownhostsfile /dev/null
identityfile ~/.ssh/tc
Host proxy-server
HostName 185.6.14.130
Port 40022
User uzor1
IdentityFile ~/.ssh/env_7209
Host 10.65.88.*
User uzor1
ProxyJump proxy-server
IdentityFile ~/.ssh/env_7209

View File

@ -0,0 +1,2 @@
---
# handlers file for ssh_config

View File

@ -0,0 +1,34 @@
galaxy_info:
author: your name
description: your role description
company: your company (optional)
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
# Choose a valid license ID from https://spdx.org - some suggested licenses:
# - BSD-3-Clause (default)
# - MIT
# - GPL-2.0-or-later
# - GPL-3.0-only
# - Apache-2.0
# - CC-BY-4.0
license: license (GPL-2.0-or-later, MIT, etc)
min_ansible_version: 2.1
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

View File

@ -0,0 +1,77 @@
---
# tasks file for ssh_config
- name: Install SSH
apt:
name: ssh
state: present
become: true
- name: Copy ssh configuration
copy:
src: users_config
dest: "{{ ansible_env.HOME }}/.ssh/config"
- name: Copy ssh privete key tc
copy:
src: tc
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key tc
copy:
src: tc.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644
- name: Copy ssh privete key id_rsa
copy:
src: id_rsa
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key id_rsa
copy:
src: id_rsa.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644
- name: Copy ssh privete key cybx-mirth-ansible
copy:
src: cybx-mirth-ansible
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key cybx-mirth-ansible
copy:
src: cybx-mirth-ansible.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644
- name: Copy ssh privete key cybx-qa-main-ansible
copy:
src: cybx-qa-main-ansible
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key cybx-qa-main-ansible
copy:
src: cybx-qa-main-ansible.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644
- name: Copy ssh privete key google_compute_engine
copy:
src: google_compute_engine
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key google_compute_engine
copy:
src: google_compute_engine.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644
- name: Copy ssh privete key 7209
copy:
src: env_7209
dest: "{{ ansible_env.HOME }}/.ssh/"
decrypt: yes
mode: 0600
- name: Copy ssh public key 7209
copy:
src: env_7209.pub
dest: "{{ ansible_env.HOME }}/.ssh/"
mode: 0644

View File

@ -0,0 +1,2 @@
localhost

View File

@ -0,0 +1,5 @@
---
- hosts: localhost
remote_user: root
roles:
- ssh_config

View File

@ -0,0 +1,2 @@
---
# vars file for ssh_config