Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IAM_User_Policy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "aws" {
}
resource "aws_iam_user" "lb" {
count = length(var.username)
name = element(var.username,count.index)
name = element(var.username,count.index) #hello-world
path = "/system/"

tags = {
Expand Down
2 changes: 1 addition & 1 deletion ProvisionEC2Instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

resource "aws_instance" "example" {
ami = "ami-0fb653ca2d3203ac1"
ami = "ami-0fb653ca2d3203ac1" #ne comment"
instance_type = "t2.micro"

tags = {
Expand Down
2 changes: 1 addition & 1 deletion RemoteBackend.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
key = "global/s3/terraform.tfstate"
region = "us-east-2"

# Replace this with your DynamoDB table name!
# Replace this with your DynamoDB table name! #hello-world
dynamodb_table = "ddevops-techstack21"
encrypt = true
}
Expand Down