Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
Video: Provision user and ssh key with Ansible on Oracle Linux 8

About
This video provides instructions for using Ansible with Vagrant to provision an Oracle Linux 8 system with an additional user and ssh key.
Content:
This video discusses the steps needed to create an Ansible script for provisioning an additional user and ssh key beyond the defaults in the standard Oracle Linux Vagrant box deployment.
Prerequisites for this video include installing Vagrant, Ansible, VirtualBox, and the Oracle Vagrant Boxes available on GitHub.
Here are the contents of the playbook.yml covered in the video:
---
- hosts: all
become: yes
tasks:
- name: Add a user with access to sudo
user:
name: oracle
password: "{{ 'oracle' | password_hash('sha512') }}"
comment: Oracle User
groups: wheel
append: yes
update_password: on_create
- name: Set authorized key for user oracle copying it from current user
authorized_key:
user: oracle
state: present
key: "{{ lookup('file', lookup('env','HOME') + '/.ssh/id_rsa.pub') }}"
Click on the following link to access the video:
Additional Resources
If you liked this video, you might also like to see more videos on technologies, software and tools used by Oracle to develop and provision microservices-based applications for deployment in environments that support open standards and specifications.
The following Resource links offer a wealth of additional videos and information on this subject:
Oracle Learning Library – Linux on Oracle Cloud Infrastructure
Oracle Linux 8 Video Learning Library -
https://www.oracle.com/goto/oraclelinuxlearning
Oracle Linux 8 Documentation
https://docs.oracle.com/en/operating-systems/oracle-linux/8/index.html
Comments
-
above links are helpful.
Thx