Getting Started with Authorizations in Google Cloud: A Step-by-Step Guide
Hey there! Ready to dive into setting up your Google Cloud project? If you’re new to cloud security, don’t worry—we’re here to walk you through it. Let’s break down the process together, starting with creating your project and setting up essential permissions.
Step 1: Create Your Google Cloud Project
First things first, you’ll need a project to get started. Here’s how you can create one:
- Head over to the Google Cloud Console.
- Notice the project drop-down menu at the top? Click on it.
- Click “New Project” to kick off your creation process.
- Think of a cool name for your project and select a billing account.
- Hit “Create” and voilà, your project is ready to roll!
Step 2: Crafting a Service Account
Next, let’s set up a service account to manage permissions. Don’t worry; we’ll keep it simple!
- In the Google Cloud Console, swing by the “IAM & Admin” section.
- On the left, click “Service Accounts.”
- You’ll spot “Create Service Account” at the top—click it.
- Give your service account a name and description. Easy, right?
- Click “Create and Continue.”
- It’s time for roles! Assign these roles to your service account to give it the right permissions:
- Compute Viewer (
roles/compute.viewer
) - Compute Instance Admin (v1) (
roles/compute.instanceAdmin.v1
) - Compute OS Admin Login (
roles/compute.osAdminLogin
) - Compute Security Admin (
roles/compute.securityAdmin
) - Compute Image User (
roles/compute.imageUser
) - Service Account User (
roles/iam.serviceAccountUser
)
- Compute Viewer (
- Click “Done” to wrap up the setup.
Take a look in the “IAM & Admin” > “IAM” section—you’ve just crafted a robust configuration, like this one:
Wondering why these roles are important? Let’s break it down:
- Compute Viewer lets you view resources without altering them—perfect for keeping an eye on things.
- Compute Instance Admin (v1) empowers you to manage VM instances, like starting or stopping them.
- Compute OS Admin Login allows secure SSH connections to your Linux VM instances.
- Compute Security Admin is key for managing firewall rules and security settings.
- Compute Image User helps in deploying instances from specific images.
- Service Account User lets your deployment process utilize a service account for other Google Cloud services.
Warning
Remember: It’s best to keep tasks specific to the service account to ensure security. Stick to the principle of least privilege!
Automating Your Deployments: Enter OpenTofu
Ready to make things even smoother? Automating deployments is the way to go. Here’s how to gear up for it:
First, confirm you have Terraform or OpenTofu installed. Follow the detailed Terraform instructions or OpenTofu instructions to get set up. We’ll go with OpenTofu because it’s open-source and user-friendly.
Step 1: Enabling the Cloud Resource Manager API
Let’s enable the Cloud Resource Manager API to keep moving forward:
- Navigate to “APIs & Services” in the Google Cloud Console.
- Click “Library” on the left.
- Look up “Cloud Resource Manager API” and click on it.
- Activate it by clicking “Enable.”
Also, repeat this for the Compute Engine API.
Step 2: Kickstart a Tofu Project
It’s time to get our hands on with OpenTofu:
- Open your terminal or command prompt.
- Create a new directory for your upcoming project:
mkdir my-tofu-project cd my-tofu-project
- Initialize the project with:
tofu init
- Draft a Tofu configuration, like
main.tf
, to define your resources.
Step 3: Clone Our Repository for Quick Setup
Looking for a fast start? Cloning our repository can save you time.
- Clone the repository with:
git clone https://github.com/Aitbytes/Projet-Long-Infra
- Jump into the
k3s-php
directory:cd Projet-Long-Infra/k3s-php
- Check out the
README.md
for further steps or run the included scripts to set up your environment.
Whether you’re using our scripts or crafting your own, our How to deploy with Terraform guide will illuminate the path.
![Tofu Project Example]
Great job! If you’ve reached deploying the cluster, it’s time to dive into Configuring Kubernetes with k3s and Ansible. You’re on an exciting journey to mastering cloud deployments!