Sandeep Yadav
Results
2
comments of
Sandeep Yadav
# terraform.tf terraform { /* Uncomment this block to use Terraform Cloud for this tutorial cloud { organization = "organization-name" workspaces { name = "learn-terraform-provider-versioning" } } */ required_providers {...
# main.tf provider "aws" { region = "us-west-2" alias = "primary_region" } resource "random_pet" "petname" { length = 5 separator = "-" } resource "aws_s3_bucket" "sample_bucket_we_used_b" { provider = aws.primary_region...