Skip to content

Commit 3bceccc

Browse files
committedJan 27, 2023
Revert unintended change
1 parent d9e067e commit 3bceccc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎examples/templates/aws-linux/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ locals {
109109
# User data is used to stop/start AWS instances. See:
110110
# https://github.com/hashicorp/terraform-provider-aws/issues/22
111111

112-
user_data_start = <<-EOT
112+
user_data_start = <<EOT
113113
Content-Type: multipart/mixed; boundary="//"
114114
MIME-Version: 1.0
115115
@@ -139,7 +139,7 @@ sudo -u ${local.linux_user} sh -c '${coder_agent.main.init_script}'
139139
--//--
140140
EOT
141141

142-
user_data_end = <<-EOT
142+
user_data_end = <<EOT
143143
Content-Type: multipart/mixed; boundary="//"
144144
MIME-Version: 1.0
145145

‎examples/templates/aws-windows/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ locals {
8282
# User data is used to stop/start AWS instances. See:
8383
# https://github.com/hashicorp/terraform-provider-aws/issues/22
8484

85-
user_data_start = <<-EOT
85+
user_data_start = <<EOT
8686
<powershell>
8787
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
8888
${coder_agent.main.init_script}
8989
</powershell>
9090
<persist>true</persist>
9191
EOT
9292

93-
user_data_end = <<-EOT
93+
user_data_end = <<EOT
9494
<powershell>
9595
shutdown /s
9696
</powershell>

0 commit comments

Comments
 (0)