Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
irakravchuk authored Mar 26, 2021
1 parent 1f04fd0 commit 3cd0a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform-was-modik/test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ resource "aws_instance" "test_instance_my_instance1" {
subnet_id = var.subnet
associate_public_ip_address = var.associate_public_ip

tags = merge({ "Name" = format("k.kotov-test -> %s -> %s", substr ("🤔🤷", 0,1), data.aws_ami.ubuntu.name) }, var.tags)
tags = merge({ "Name" = format("irak-test -> %s -> %s", substr ("🤔🤷", 0,1), data.aws_ami.ubuntu.name) }, var.tags)
timeouts {
create = "10m"
delete = "15m"
}
#tags = merge({ "Name" = "k.kotov"}, var.tags)
#tags = merge({ "Name" = "irak"}, var.tags)
}


resource "aws_ebs_volume" "ebs-volume_for_testing_terraform-AllowFullS3Access" {
availability_zone = "us-east-1a"
size = 1
tags = merge({ "Name" = "k.kotov"}, var.tags)
tags = merge({ "Name" = "irak"}, var.tags)
}

data "aws_iam_policy_document" "bucket_policy" {
Expand Down

0 comments on commit 3cd0a4d

Please sign in to comment.