├── .gitignore ├── LICENSE ├── README.md ├── examples ├── k8s-sd-openstack │ ├── README.md │ ├── infra │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars.sample │ │ └── variables.tf │ ├── modules │ │ ├── baremetal-hosts │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── cloudvm-hosts │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── network │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── secgroup │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ └── vrack │ │ ├── main.tf │ │ ├── terraform.tfvars.sample │ │ └── variables.tf ├── multiregion-pci │ ├── main.tf │ ├── modules │ │ └── infra │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ ├── variables.tf │ └── versions.tf └── vrack_iplb │ ├── README.md │ ├── infra │ ├── bastion.tf │ ├── iplb.tf │ ├── main.tf │ ├── nodes.tf │ ├── terraform.tfvars.sample │ └── variables.tf │ └── vrack │ ├── main.tf │ ├── terraform.tfvars.sample │ └── variables.tf ├── journey ├── 0-simple-terraform │ ├── README.md │ └── main.tf ├── 1-simple-terraform-vars │ ├── Makefile │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── 2-simple-terraform-state │ ├── Makefile │ ├── README.md │ ├── README.org │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── 3-create-readytouse-instance │ ├── README.md │ ├── main.tf │ ├── myblog.conf.tpl │ ├── variables.tf │ └── www │ │ ├── config.toml │ │ ├── content │ │ ├── _index.en.md │ │ ├── _index.fr.md │ │ ├── about.en.md │ │ ├── about.fr.md │ │ └── post │ │ │ ├── creating-a-new-theme.en.md │ │ │ ├── creating-a-new-theme.fr.md │ │ │ ├── goisforlovers.en.md │ │ │ ├── goisforlovers.fr.md │ │ │ ├── hugoisforlovers.en.md │ │ │ ├── hugoisforlovers.fr.md │ │ │ ├── migrate-from-jekyll.en.md │ │ │ └── migrate-from-jekyll.fr.md │ │ ├── layouts │ │ └── partials │ │ │ ├── brand.html │ │ │ └── footer-content.html │ │ ├── public │ │ ├── 2014 │ │ │ ├── 03 │ │ │ │ └── migrate-to-hugo-from-jekyll │ │ │ │ │ └── index.html │ │ │ ├── 04 │ │ │ │ ├── getting-started-with-hugo │ │ │ │ │ └── index.html │ │ │ │ └── hugo-template-primer │ │ │ │ │ └── index.html │ │ │ └── 09 │ │ │ │ └── creating-a-new-theme │ │ │ │ └── index.html │ │ ├── 404.html │ │ ├── about │ │ │ └── index.html │ │ ├── categories │ │ │ ├── development │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ ├── golang │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── css │ │ │ └── style.css │ │ ├── en │ │ │ ├── index.html │ │ │ └── sitemap.xml │ │ ├── fr │ │ │ ├── 2014 │ │ │ │ ├── 03 │ │ │ │ │ └── migrer-vers-hugo-depuis-jekyll │ │ │ │ │ │ └── index.html │ │ │ │ ├── 04 │ │ │ │ │ ├── débuter-avec-hugo │ │ │ │ │ │ └── index.html │ │ │ │ │ └── introduction-aux-modèles-hugo │ │ │ │ │ │ └── index.html │ │ │ │ └── 09 │ │ │ │ │ └── création-dun-nouveau-thème │ │ │ │ │ └── index.html │ │ │ ├── 404.html │ │ │ ├── about │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ ├── go │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.xml │ │ │ │ │ └── page │ │ │ │ │ │ └── 1 │ │ │ │ │ │ └── index.html │ │ │ │ ├── hugo │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.xml │ │ │ │ │ └── page │ │ │ │ │ │ └── 1 │ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ ├── jekyll │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.xml │ │ │ │ │ └── page │ │ │ │ │ │ └── 1 │ │ │ │ │ │ └── index.html │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ ├── page │ │ │ │ ├── 1 │ │ │ │ │ └── index.html │ │ │ │ └── 2 │ │ │ │ │ └── index.html │ │ │ ├── post │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ ├── 1 │ │ │ │ │ └── index.html │ │ │ │ │ └── 2 │ │ │ │ │ └── index.html │ │ │ ├── sitemap.xml │ │ │ └── tags │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── images │ │ │ └── image1.jpeg │ │ ├── index.html │ │ ├── index.xml │ │ ├── js │ │ │ └── script.js │ │ ├── page │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── post │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── sitemap.xml │ │ └── tags │ │ │ ├── development │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ │ ├── go │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ │ ├── golang │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ │ ├── hugo │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ ├── page │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ └── 2 │ │ │ │ └── index.html │ │ │ ├── templates │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ │ └── themes │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── static │ │ └── images │ │ │ └── image1.jpeg │ │ └── themes │ │ └── hugo-material-blog │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── images │ │ ├── screenshot.png │ │ ├── screenshot2.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── baseof.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ ├── single.html │ │ │ └── summary.html │ │ └── partials │ │ │ ├── article-meta.html │ │ │ ├── brand.html │ │ │ ├── footer-container.html │ │ │ ├── footer-content.html │ │ │ ├── footer-copyright.html │ │ │ ├── footer.html │ │ │ ├── head-custom.html │ │ │ ├── head-meta.html │ │ │ ├── header.html │ │ │ ├── language-selector.html │ │ │ ├── menu-links.html │ │ │ └── paginator.html │ │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── js │ │ │ └── script.js │ │ └── theme.toml └── 4-new-region-new-provider │ ├── README.md │ ├── main.tf │ ├── myblog.conf.tpl │ ├── variables.tf │ └── www │ ├── config.toml │ ├── content │ ├── _index.en.md │ ├── _index.fr.md │ ├── about.en.md │ ├── about.fr.md │ └── post │ │ ├── creating-a-new-theme.en.md │ │ ├── creating-a-new-theme.fr.md │ │ ├── goisforlovers.en.md │ │ ├── goisforlovers.fr.md │ │ ├── hugoisforlovers.en.md │ │ ├── hugoisforlovers.fr.md │ │ ├── migrate-from-jekyll.en.md │ │ └── migrate-from-jekyll.fr.md │ ├── layouts │ └── partials │ │ ├── brand.html │ │ └── footer-content.html │ ├── public │ ├── 2014 │ │ ├── 03 │ │ │ └── migrate-to-hugo-from-jekyll │ │ │ │ └── index.html │ │ ├── 04 │ │ │ ├── getting-started-with-hugo │ │ │ │ └── index.html │ │ │ └── hugo-template-primer │ │ │ │ └── index.html │ │ └── 09 │ │ │ └── creating-a-new-theme │ │ │ └── index.html │ ├── 404.html │ ├── about │ │ └── index.html │ ├── categories │ │ ├── development │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── golang │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── css │ │ └── style.css │ ├── en │ │ ├── index.html │ │ └── sitemap.xml │ ├── fr │ │ ├── 2014 │ │ │ ├── 03 │ │ │ │ └── migrer-vers-hugo-depuis-jekyll │ │ │ │ │ └── index.html │ │ │ ├── 04 │ │ │ │ ├── débuter-avec-hugo │ │ │ │ │ └── index.html │ │ │ │ └── introduction-aux-modèles-hugo │ │ │ │ │ └── index.html │ │ │ └── 09 │ │ │ │ └── création-dun-nouveau-thème │ │ │ │ └── index.html │ │ ├── 404.html │ │ ├── about │ │ │ └── index.html │ │ ├── categories │ │ │ ├── go │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ ├── hugo │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ ├── jekyll │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ └── page │ │ │ │ │ └── 1 │ │ │ │ │ └── index.html │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ ├── page │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── post │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── sitemap.xml │ │ └── tags │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── images │ │ └── image1.jpeg │ ├── index.html │ ├── index.xml │ ├── js │ │ └── script.js │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ └── 2 │ │ │ └── index.html │ ├── post │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ ├── 1 │ │ │ └── index.html │ │ │ └── 2 │ │ │ └── index.html │ ├── sitemap.xml │ └── tags │ │ ├── development │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── go │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── golang │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── hugo │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ ├── page │ │ ├── 1 │ │ │ └── index.html │ │ └── 2 │ │ │ └── index.html │ │ ├── templates │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ └── themes │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html │ ├── static │ └── images │ │ └── image1.jpeg │ └── themes │ └── hugo-material-blog │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── images │ ├── screenshot.png │ ├── screenshot2.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── content.html │ │ ├── list.html │ │ ├── single.html │ │ └── summary.html │ └── partials │ │ ├── article-meta.html │ │ ├── brand.html │ │ ├── footer-container.html │ │ ├── footer-content.html │ │ ├── footer-copyright.html │ │ ├── footer.html │ │ ├── head-custom.html │ │ ├── head-meta.html │ │ ├── header.html │ │ ├── language-selector.html │ │ ├── menu-links.html │ │ └── paginator.html │ ├── static │ ├── css │ │ └── style.css │ └── js │ │ └── script.js │ └── theme.toml ├── scripts ├── README.md └── openstack_functions.sh ├── statics └── architecture.png └── summit2018 ├── README.md ├── dashboard.json.tpl ├── main.tf ├── outputs.tf ├── secrets.tf ├── variables.tf ├── www.conf.tpl └── www ├── index-gravelines.html ├── index-strasbourg.html ├── resources ├── 7F0670-restorable.plist ├── HYPE-592.full.min.js ├── HYPE-592.thin.min.js ├── PIE.htc ├── blank.gif ├── gravelines-1.svg ├── gravelines-2.svg ├── gravelines.svg ├── logo-ovh-long-baseline-white.svg ├── strasbourg-1.svg └── strasbourg.svg └── script.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/README.md -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/README.md -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/infra/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/infra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/infra/outputs.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/infra/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/infra/terraform.tfvars.sample -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/infra/variables.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/baremetal-hosts/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/baremetal-hosts/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/baremetal-hosts/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/baremetal-hosts/outputs.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/baremetal-hosts/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/baremetal-hosts/variables.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/cloudvm-hosts/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/cloudvm-hosts/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/cloudvm-hosts/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/cloudvm-hosts/outputs.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/cloudvm-hosts/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/cloudvm-hosts/variables.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/network/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/network/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/network/outputs.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/network/variables.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/secgroup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/secgroup/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/secgroup/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/secgroup/outputs.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/modules/secgroup/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/modules/secgroup/variables.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/vrack/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/vrack/main.tf -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/vrack/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/vrack/terraform.tfvars.sample -------------------------------------------------------------------------------- /examples/k8s-sd-openstack/vrack/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/k8s-sd-openstack/vrack/variables.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/main.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/modules/infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/modules/infra/main.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/modules/infra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/modules/infra/outputs.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/modules/infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/modules/infra/variables.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/modules/infra/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/modules/infra/versions.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/outputs.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/terraform.tfvars.example -------------------------------------------------------------------------------- /examples/multiregion-pci/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/variables.tf -------------------------------------------------------------------------------- /examples/multiregion-pci/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/multiregion-pci/versions.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/README.md -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/bastion.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/iplb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/iplb.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/main.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/nodes.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/terraform.tfvars.sample -------------------------------------------------------------------------------- /examples/vrack_iplb/infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/infra/variables.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/vrack/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/vrack/main.tf -------------------------------------------------------------------------------- /examples/vrack_iplb/vrack/terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/vrack/terraform.tfvars.sample -------------------------------------------------------------------------------- /examples/vrack_iplb/vrack/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/examples/vrack_iplb/vrack/variables.tf -------------------------------------------------------------------------------- /journey/0-simple-terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/0-simple-terraform/README.md -------------------------------------------------------------------------------- /journey/0-simple-terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/0-simple-terraform/main.tf -------------------------------------------------------------------------------- /journey/1-simple-terraform-vars/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/1-simple-terraform-vars/Makefile -------------------------------------------------------------------------------- /journey/1-simple-terraform-vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/1-simple-terraform-vars/README.md -------------------------------------------------------------------------------- /journey/1-simple-terraform-vars/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/1-simple-terraform-vars/main.tf -------------------------------------------------------------------------------- /journey/1-simple-terraform-vars/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/1-simple-terraform-vars/outputs.tf -------------------------------------------------------------------------------- /journey/1-simple-terraform-vars/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/1-simple-terraform-vars/variables.tf -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/Makefile -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/README.md -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/README.org -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/main.tf -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/outputs.tf -------------------------------------------------------------------------------- /journey/2-simple-terraform-state/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/2-simple-terraform-state/variables.tf -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/README.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/main.tf -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/myblog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/myblog.conf.tpl -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/variables.tf -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/config.toml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | --- -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Accueil" 3 | --- -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/about.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/about.en.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/about.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/about.fr.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/creating-a-new-theme.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/creating-a-new-theme.en.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/creating-a-new-theme.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/creating-a-new-theme.fr.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/goisforlovers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/goisforlovers.en.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/goisforlovers.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/goisforlovers.fr.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/hugoisforlovers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/hugoisforlovers.en.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/hugoisforlovers.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/hugoisforlovers.fr.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/migrate-from-jekyll.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/migrate-from-jekyll.en.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/content/post/migrate-from-jekyll.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/content/post/migrate-from-jekyll.fr.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/layouts/partials/brand.html: -------------------------------------------------------------------------------- 1 | {{ .Site.Title }} -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/layouts/partials/footer-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/layouts/partials/footer-content.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/2014/03/migrate-to-hugo-from-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/2014/03/migrate-to-hugo-from-jekyll/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/2014/04/getting-started-with-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/2014/04/getting-started-with-hugo/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/2014/04/hugo-template-primer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/2014/04/hugo-template-primer/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/2014/09/creating-a-new-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/2014/09/creating-a-new-theme/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/404.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/about/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/development/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/development/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/development/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/golang/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/golang/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/golang/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/categories/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/css/style.css -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/en/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/en/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/en/sitemap.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/2014/03/migrer-vers-hugo-depuis-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/2014/03/migrer-vers-hugo-depuis-jekyll/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/2014/04/débuter-avec-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/2014/04/débuter-avec-hugo/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/2014/04/introduction-aux-modèles-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/2014/04/introduction-aux-modèles-hugo/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/2014/09/création-dun-nouveau-thème/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/2014/09/création-dun-nouveau-thème/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/404.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/about/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/go/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/go/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/go/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/go/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/go/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/hugo/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/hugo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/hugo/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/hugo/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/hugo/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/jekyll/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/categories/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/page/2/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/post/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/post/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/post/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/post/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/post/page/2/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/sitemap.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/tags/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/tags/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/fr/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/fr/tags/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/images/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/images/image1.jpeg -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/js/script.js: -------------------------------------------------------------------------------- 1 | $(".button-collapse").sideNav(); -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/page/2/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/post/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/post/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/post/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/post/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/post/page/2/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/sitemap.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/development/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/development/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/development/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/go/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/go/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/go/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/go/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/go/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/golang/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/golang/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/golang/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/hugo/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/hugo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/hugo/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/hugo/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/hugo/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/page/2/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/templates/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/templates/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/templates/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/templates/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/templates/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/themes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/themes/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/themes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/themes/index.xml -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/public/tags/themes/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/public/tags/themes/page/1/index.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/static/images/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/static/images/image1.jpeg -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | exampleSite/themes -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/LICENSE.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/README.md -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/screenshot.png -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/screenshot2.png -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/images/tn.png -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/404.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/baseof.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/content.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/list.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/single.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/_default/summary.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/article-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/article-meta.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/brand.html: -------------------------------------------------------------------------------- 1 | {{ .Site.Title }} -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-container.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-content.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer-copyright.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/footer.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/head-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/head-custom.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/head-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/head-meta.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/header.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/language-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/language-selector.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/menu-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/menu-links.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/layouts/partials/paginator.html -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/static/css/style.css -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/static/js/script.js: -------------------------------------------------------------------------------- 1 | $(".button-collapse").sideNav(); -------------------------------------------------------------------------------- /journey/3-create-readytouse-instance/www/themes/hugo-material-blog/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/3-create-readytouse-instance/www/themes/hugo-material-blog/theme.toml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/README.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/main.tf -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/myblog.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/myblog.conf.tpl -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/variables.tf -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/config.toml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | --- -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Accueil" 3 | --- -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/about.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/about.en.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/about.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/about.fr.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/creating-a-new-theme.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/creating-a-new-theme.en.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/creating-a-new-theme.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/creating-a-new-theme.fr.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/goisforlovers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/goisforlovers.en.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/goisforlovers.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/goisforlovers.fr.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/hugoisforlovers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/hugoisforlovers.en.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/hugoisforlovers.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/hugoisforlovers.fr.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/migrate-from-jekyll.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/migrate-from-jekyll.en.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/content/post/migrate-from-jekyll.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/content/post/migrate-from-jekyll.fr.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/layouts/partials/brand.html: -------------------------------------------------------------------------------- 1 | {{ .Site.Title }} -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/layouts/partials/footer-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/layouts/partials/footer-content.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/2014/03/migrate-to-hugo-from-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/2014/03/migrate-to-hugo-from-jekyll/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/2014/04/getting-started-with-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/2014/04/getting-started-with-hugo/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/2014/04/hugo-template-primer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/2014/04/hugo-template-primer/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/2014/09/creating-a-new-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/2014/09/creating-a-new-theme/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/404.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/about/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/development/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/development/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/development/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/golang/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/golang/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/golang/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/categories/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/css/style.css -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/en/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/en/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/en/sitemap.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/2014/03/migrer-vers-hugo-depuis-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/2014/03/migrer-vers-hugo-depuis-jekyll/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/2014/04/débuter-avec-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/2014/04/débuter-avec-hugo/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/2014/04/introduction-aux-modèles-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/2014/04/introduction-aux-modèles-hugo/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/2014/09/création-dun-nouveau-thème/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/2014/09/création-dun-nouveau-thème/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/404.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/about/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/go/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/go/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/go/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/go/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/go/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/hugo/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/hugo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/hugo/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/hugo/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/hugo/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/jekyll/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/jekyll/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/jekyll/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/jekyll/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/jekyll/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/categories/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/page/2/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/post/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/post/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/post/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/post/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/post/page/2/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/sitemap.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/tags/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/tags/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/fr/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/fr/tags/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/images/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/images/image1.jpeg -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/js/script.js: -------------------------------------------------------------------------------- 1 | $(".button-collapse").sideNav(); -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/page/2/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/post/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/post/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/post/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/post/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/post/page/2/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/sitemap.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/development/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/development/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/development/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/go/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/go/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/go/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/go/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/go/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/golang/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/golang/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/golang/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/hugo/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/hugo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/hugo/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/hugo/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/hugo/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/page/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/page/2/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/templates/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/templates/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/templates/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/templates/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/templates/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/themes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/themes/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/themes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/themes/index.xml -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/public/tags/themes/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/public/tags/themes/page/1/index.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/static/images/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/static/images/image1.jpeg -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | exampleSite/themes -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/LICENSE.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/README.md -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/screenshot.png -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/screenshot2.png -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/images/tn.png -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/404.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/baseof.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/content.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/list.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/single.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/_default/summary.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/article-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/article-meta.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/brand.html: -------------------------------------------------------------------------------- 1 | {{ .Site.Title }} -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-container.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-content.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer-copyright.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/footer.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/head-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/head-custom.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/head-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/head-meta.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/header.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/language-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/language-selector.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/menu-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/menu-links.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/layouts/partials/paginator.html -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/static/css/style.css -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/static/js/script.js: -------------------------------------------------------------------------------- 1 | $(".button-collapse").sideNav(); -------------------------------------------------------------------------------- /journey/4-new-region-new-provider/www/themes/hugo-material-blog/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/journey/4-new-region-new-provider/www/themes/hugo-material-blog/theme.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/openstack_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/scripts/openstack_functions.sh -------------------------------------------------------------------------------- /statics/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/statics/architecture.png -------------------------------------------------------------------------------- /summit2018/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/README.md -------------------------------------------------------------------------------- /summit2018/dashboard.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/dashboard.json.tpl -------------------------------------------------------------------------------- /summit2018/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/main.tf -------------------------------------------------------------------------------- /summit2018/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/outputs.tf -------------------------------------------------------------------------------- /summit2018/secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/secrets.tf -------------------------------------------------------------------------------- /summit2018/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/variables.tf -------------------------------------------------------------------------------- /summit2018/www.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www.conf.tpl -------------------------------------------------------------------------------- /summit2018/www/index-gravelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/index-gravelines.html -------------------------------------------------------------------------------- /summit2018/www/index-strasbourg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/index-strasbourg.html -------------------------------------------------------------------------------- /summit2018/www/resources/7F0670-restorable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/7F0670-restorable.plist -------------------------------------------------------------------------------- /summit2018/www/resources/HYPE-592.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/HYPE-592.full.min.js -------------------------------------------------------------------------------- /summit2018/www/resources/HYPE-592.thin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/HYPE-592.thin.min.js -------------------------------------------------------------------------------- /summit2018/www/resources/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/PIE.htc -------------------------------------------------------------------------------- /summit2018/www/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/blank.gif -------------------------------------------------------------------------------- /summit2018/www/resources/gravelines-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/gravelines-1.svg -------------------------------------------------------------------------------- /summit2018/www/resources/gravelines-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/gravelines-2.svg -------------------------------------------------------------------------------- /summit2018/www/resources/gravelines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/gravelines.svg -------------------------------------------------------------------------------- /summit2018/www/resources/logo-ovh-long-baseline-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/logo-ovh-long-baseline-white.svg -------------------------------------------------------------------------------- /summit2018/www/resources/strasbourg-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/strasbourg-1.svg -------------------------------------------------------------------------------- /summit2018/www/resources/strasbourg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/terraform-ovh-commons/HEAD/summit2018/www/resources/strasbourg.svg -------------------------------------------------------------------------------- /summit2018/www/script.js: -------------------------------------------------------------------------------- 1 | // HYPE.documents["Instance"] 2 | --------------------------------------------------------------------------------