File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -30,4 +30,14 @@ resource "null_resource" "application-install" {
30
30
" apt-get install apache2 -y"
31
31
]
32
32
}
33
+
34
+ provisioner "file" {
35
+ content = << EOT
36
+ <html>
37
+ <img src="https://raw.githubusercontent.com/IBM/infra-to-app-with-landing-zone/main/docs/header.jpg">
38
+ <h1> You did it!! </h1>
39
+ </html>
40
+ EOT
41
+ destination = " /var/www/html/index.html"
42
+ }
33
43
}
Original file line number Diff line number Diff line change @@ -37,6 +37,16 @@ resource "null_resource" "application-install" {
37
37
" apt-get install apache2 -y"
38
38
]
39
39
}
40
+
41
+ provisioner "file" {
42
+ content = << EOT
43
+ <html>
44
+ <img src="https://raw.githubusercontent.com/IBM/infra-to-app-with-landing-zone/main/docs/header.jpg">
45
+ <h1> You did it!! </h1>
46
+ </html>
47
+ EOT
48
+ destination = " /var/www/html/index.html"
49
+ }
40
50
}
41
51
42
52
# Extra variable required to allow to connect to the workload vsis through the management vsi
You can’t perform that action at this time.
0 commit comments