Terraform assignment-1 by Bharath Srinivas
Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now provider “aws” {region = “ap-south-1”access_key = “”secret_key = “”} provider “github” {token = “”organization = “”} variable “instance_count” {type = numberdescription = “This is for demo of number variable”default = 2 }variable “users” {type = “list”default = [“bharath”, “sharath”, “nikhil”]description = “This is for demo of list variable”} variable “amis” {type = “map”default =
Read more