Example project for configuring the following:
- Create and tear down Compute Engine VM Instances using Ansible
- Includes VPC Network and associated subnets and firewall rules
Creating and enabling service accounts for instances
After Google Cloud IAM is configured, configure ENV variables for GCP, for example.
export GCP_PROJECT=gcp-project-name
export GCP_AUTH_KIND=serviceaccount
export GCP_SERVICE_ACCOUNT_FILE=/tmp/[email protected]
export GCP_SCOPES=https://www.googleapis.com/auth/compute
export GCP_REGION=australia-southeast1
export GCP_ZONE=australia-southeast1-b
Download and install Python3 from https://www.python.org/downloads/mac-osx/. This is the default Python for the OS. All Python packages should ideally be managed under venv from this point onwards.
$ python -m venv .venv
$ source .venv/bin/activate
$ deactivate
$ pip install -r requirements.txt
Note this is not the same SSH key you used for your GCP service account. This is the SSH key used for accessing the newly created instance.
$ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519_gcp_compute_gcp-ansible -C "[email protected]"
$ ansible-playbook -i inventories/gcp-ansible.gcp.yml playbooks/10_infras.yml --tags "create"
Login to instance using IP address that can be found in output logs from above commands
$ ssh [email protected]
Example console after creation and logging into new instance:
➜ ssh [email protected]
The authenticity of host '35.244.126.18 (35.244.126.18)' can't be established.
ECDSA key fingerprint is SHA256:cqiZHFL9KDTvFpgv3GGkSyk+eARBCWyp75j9ldcBLaA.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '35.244.126.18' (ECDSA) to the list of known hosts.
[gcp-ansible@gcp-ansible ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 100G 1.6G 99G 2% /
devtmpfs 841M 0 841M 0% /dev
tmpfs 848M 0 848M 0% /dev/shm
tmpfs 848M 8.4M 840M 1% /run
tmpfs 848M 0 848M 0% /sys/fs/cgroup
tmpfs 170M 0 170M 0% /run/user/1002
To delete the instance
$ ansible-playbook -i inventories/gcp-ansible.gcp.yml playbooks/10_infras.yml --tags "delete"
Delete line from ~/.ssh/known_hosts with new instance IP address after deleting instance.
- Extend current Ansible config scripts to further configure created instance
- Install and configure JVM stack
- Use Ansible to configure Google Cloud SQL
- Is there an easier way to log the IP address created?
Ansible Google Cloud Platform Guide
Getting Started with Red Hat Ansible for Google Cloud Platform