0
0
Terraformcloud~30 mins

Creating your first resource in Terraform - Try It Yourself

Choose your learning style9 modes available
Creating your first resource
📖 Scenario: You are starting to learn Terraform to manage cloud resources. Terraform uses configuration files to define resources like virtual machines or storage buckets. In this project, you will create your very first resource using Terraform.
🎯 Goal: Build a Terraform configuration that creates a single AWS S3 bucket named exactly my-first-terraform-bucket. This will help you understand how to define resources in Terraform.
📋 What You'll Learn
Create a Terraform configuration file named main.tf.
Define a resource block for an AWS S3 bucket.
Set the bucket name to my-first-terraform-bucket exactly.
Use the AWS provider with region us-east-1.
💡 Why This Matters
🌍 Real World
Terraform is widely used to automate cloud infrastructure setup, making it easy to create and manage resources like storage buckets consistently.
💼 Career
Knowing how to write Terraform configurations is a key skill for cloud engineers and DevOps professionals to manage infrastructure as code.
Progress0 / 4 steps
1
Set up the AWS provider
Write a Terraform configuration that sets the AWS provider with the region set to us-east-1. Use the provider block with provider "aws" and set region = "us-east-1" inside it.
Terraform
Need a hint?

The provider block tells Terraform which cloud and region to use. Use provider "aws" and set region = "us-east-1".

2
Define the S3 bucket resource
Add a resource block to create an AWS S3 bucket named my-first-terraform-bucket. Use resource "aws_s3_bucket" "my_bucket" and set the bucket attribute to "my-first-terraform-bucket".
Terraform
Need a hint?

The resource block defines what you want to create. Use resource "aws_s3_bucket" "my_bucket" and inside set bucket = "my-first-terraform-bucket".

3
Add a tag to the bucket
Inside the aws_s3_bucket resource block, add a tags block with a tag named Environment set to Development. Use the syntax tags = { Environment = "Development" }.
Terraform
Need a hint?

Tags help organize resources. Add a tags block inside the resource with Environment = "Development".

4
Add versioning to the bucket
Enable versioning on the S3 bucket by adding a versioning block inside the aws_s3_bucket resource. Set enabled = true inside the versioning block.
Terraform
Need a hint?

Versioning keeps multiple versions of objects. Add a versioning block with enabled = true inside the resource.