Archives: Fixes

Error: Error Configuring Terraform AWS Provider: no valid credential sources for Terraform AWS Provider found

May 23, 2022 | By Gerald | No Comments | Filed in: Fixes, Terraform Issue.

I was stuck for over an hour debugging the error described below. Despite verifying my AWS credentials locally using the AWS CLI, I was unable to find any issues and the key was still functioning properly upon validation. The error message is indicating that Terraform is unable to connect to the AWS provider due to • Read More »

Tags: , , , , ,

Setup git push no password on Bitbucket/Github/Gitlab

July 24, 2020 | By Gerald | No Comments | Filed in: Fixes.

This guide will show you how to setup git push and git pull without the need for password authentication. These are the most common problems of many beginner developers and system admins, just because they do not like to input their password regularly when pushing their code into the web repository. To solve this problem. • Read More »

Tags: , , , ,

How to remove a none tag on Docker images

July 24, 2020 | By Gerald | No Comments | Filed in: Fixes.

This guide will show you on how to remove a <none> tag on docker images. And keep your docker host neat and clean. Have you ever wondered that many untag images get filed up. These images occur when a new build of an image takes the repo:tag away from the image ID, leaving it as <none>:<none> or untagged. To • Read More »

Tags: ,

Permission denied while trying to connect to the Docker daemon socket

July 23, 2020 | By Gerald | 1 Comment | Filed in: Fixes.

This guide will help you on how to fix Docker permission denied while trying to connect to the Docker daemon socket. MacOS is my main development environment, and a while, I installed a docker inside a docker container. After jenkins container created, you will need to go inside to the docker container using your docker • Read More »

Tags: , , , , , ,

Operation not permitted using terminal on Visual Studio Code in Macbook Pro

July 16, 2020 | By Gerald | 5 Comments | Filed in: Fixes.

This guide will show you on how to fix operation not permitted using terminal on Visual Studio Code in Macbook Pro. I’m not able to run ls command on my Downloads directory using terminal on Visual Studio Code, but when using other terminals like iTerm or default macOS terminal it works fine. The issue goes • Read More »

Tags: , , ,

Ansible: Failed to connect to the host via ssh

July 15, 2020 | By Gerald | No Comments | Filed in: Fixes.

This guide will show you how to fix issue on Ansible for hosts file inventory failed to connect to the host via ssh. Basic inventory for Ansible hosts file: [all:vars] ansible_connection=ssh [dev] dev_host ansible_host=remote_host ansible_user=ubuntu ansible_private_key_file=/var/jenkins_home/ansible/remote-key To run a test connection for your basic inventory for Ansible, type command: ansible -i hosts -m ping dev_host • Read More »

Tags: , , , , ,