TF: Formatting

This commit is contained in:
Sebastian Haderecker 2021-04-15 16:23:49 +02:00
parent de3d7c7f4f
commit c9ec5347d5
2 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@ resource "aws_instance" "tpot" {
volume_size = 128 volume_size = 128
delete_on_termination = true delete_on_termination = true
} }
user_data = templatefile("../cloud-init.yaml", {timezone = var.timezone, password = var.linux_password, tpot_flavor = var.tpot_flavor, web_user = var.web_user, web_password = var.web_password}) user_data = templatefile("../cloud-init.yaml", { timezone = var.timezone, password = var.linux_password, tpot_flavor = var.tpot_flavor, web_user = var.web_user, web_password = var.web_password })
vpc_security_group_ids = [aws_security_group.tpot.id] vpc_security_group_ids = [aws_security_group.tpot.id]
associate_public_ip_address = true associate_public_ip_address = true
} }

View file

@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.13" required_version = ">= 0.13"
required_providers { required_providers {
aws = { aws = {
source = "hashicorp/aws" source = "hashicorp/aws"
version = "3.26.0" version = "3.26.0"
} }
} }