From c7429f2b89268bc817f530c4eedc59930366b429 Mon Sep 17 00:00:00 2001
From: Martin Goik <goik@hdm-stuttgart.de>
Date: Mon, 27 May 2024 11:03:17 +0200
Subject: [PATCH] Failsafe login page

---
 Doc/Sdi/CloudProvider/gettingStarted.xml | 40 +++++++++++++++++-------
 1 file changed, 28 insertions(+), 12 deletions(-)

diff --git a/Doc/Sdi/CloudProvider/gettingStarted.xml b/Doc/Sdi/CloudProvider/gettingStarted.xml
index d063c607..09d280f9 100644
--- a/Doc/Sdi/CloudProvider/gettingStarted.xml
+++ b/Doc/Sdi/CloudProvider/gettingStarted.xml
@@ -1353,6 +1353,33 @@ resource "hcloud_network_route" "gateway"{
 }</programlisting>
     </figure>
 
+    <figure xml:id="sdi_cloudProvider_networks_internHost">
+      <title>intern host</title>
+
+      <programlisting language="tf">resource "hcloud_server" "web" {
+    ....
+  public_net {
+    ipv4_enabled = false
+    ipv6_enabled = false
+  }
+  network {
+    network_id = hcloud_network.<emphasis role="red">pNet</emphasis>.id
+    ip         = "<emphasis role="red">10.0.1.20</emphasis>"
+  }
+}</programlisting>
+    </figure>
+
+    <figure xml:id="sdi_cloudProvider_networks_loginLastResort">
+      <title><productname>Failsafe console login</productname></title>
+
+      <programlisting language="tf">#cloud-config
+
+chpasswd:
+  list: |
+    root:bingo9wingo
+  expire: False</programlisting>
+    </figure>
+
     <qandaset defaultlabel="qanda"
               xml:id="sdi_cloudProvider_networks_qanda_simpleSubnet">
       <title>Creating a subnet</title>
@@ -1503,7 +1530,7 @@ resource "hcloud_network_route" "gateway"{
 
       <itemizedlist>
         <listitem>
-          <para> Problem: <productname
+          <para>Problem: <productname
           xlink:href="https://wiki.debian.org/AptCacherNg">apt-cacher-ng</productname>
           installation requires time for service to become available.</para>
         </listitem>
@@ -1569,17 +1596,6 @@ echo "<emphasis role="red">apt-cacher-ng service ready</emphasis>"</programlisti
       </informaltable>
     </figure>
 
-    <figure xml:id="sdi_cloudProvider_networks_loginLastResort">
-      <title><productname>Failsafe console login</productname></title>
-
-      <programlisting language="tf">#cloud-config
-
-chpasswd:
-  list: |
-    root:bingo9wingo
-  expire: False</programlisting>
-    </figure>
-
     <qandaset defaultlabel="qanda"
               xml:id="sdi_cloudProvider_networks_qanda_httpGateway">
       <title>Adding an application level gateway</title>
-- 
GitLab