From 450ea5df3d9b89946482f58e27e82376875765f8 Mon Sep 17 00:00:00 2001 From: Rowena Date: Mon, 20 Jan 2025 17:15:21 +0100 Subject: [PATCH 1/3] fix(vpc): use case typo --- network/vpc/reference-content/use-case-basic.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network/vpc/reference-content/use-case-basic.mdx b/network/vpc/reference-content/use-case-basic.mdx index 658c19c616..944ac773d8 100644 --- a/network/vpc/reference-content/use-case-basic.mdx +++ b/network/vpc/reference-content/use-case-basic.mdx @@ -13,7 +13,7 @@ categories: - network --- -Scaleway **V**irtual **P**rivate **N**etwork (VPC) and the accompanying range of network products, are important building blocks within the Scaleway ecosystem. By creating your Scaleway resources within a carefully thought out VPC-based infrastructure, you can maximize security, resilience and efficiency. +Scaleway **V**irtual **P**rivate **C**loud (VPC) and the accompanying range of network products, are important building blocks within the Scaleway ecosystem. By creating your Scaleway resources within a carefully thought out VPC-based infrastructure, you can maximize security, resilience and efficiency. Knowing how to create, combine and configure resources such as Private Networks with definable subnets, VPC routing with custom routes, IPAM to define and manage your IP addresses, and resources such as Load Balancers and Public Gateways to facilitate connectivity and traffic distribution, is invaluable in achieving control over your networking environment. @@ -99,7 +99,7 @@ The templates include an example "Task Tracker" application to show how the infr The following snippet shows an extract of one of the templates: -``` +```python resource "scaleway_vpc" "vpc01" { name = "vpc_${var.app_name}" } From f004784641e9e91f2dbfd96fe45043a30d63ab8e Mon Sep 17 00:00:00 2001 From: Rowena Jones <36301604+RoRoJ@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:16:17 +0100 Subject: [PATCH 2/3] Apply suggestions from code review --- network/vpc/reference-content/use-case-basic.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/network/vpc/reference-content/use-case-basic.mdx b/network/vpc/reference-content/use-case-basic.mdx index 944ac773d8..2dd1c99317 100644 --- a/network/vpc/reference-content/use-case-basic.mdx +++ b/network/vpc/reference-content/use-case-basic.mdx @@ -99,7 +99,6 @@ The templates include an example "Task Tracker" application to show how the infr The following snippet shows an extract of one of the templates: -```python resource "scaleway_vpc" "vpc01" { name = "vpc_${var.app_name}" } From 4414fcd794f6d1cb74685183970b4ed449d60a85 Mon Sep 17 00:00:00 2001 From: Rowena Date: Mon, 20 Jan 2025 17:16:56 +0100 Subject: [PATCH 3/3] fix(vpc): code --- network/vpc/reference-content/use-case-basic.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/network/vpc/reference-content/use-case-basic.mdx b/network/vpc/reference-content/use-case-basic.mdx index 2dd1c99317..46373c2e5b 100644 --- a/network/vpc/reference-content/use-case-basic.mdx +++ b/network/vpc/reference-content/use-case-basic.mdx @@ -99,6 +99,7 @@ The templates include an example "Task Tracker" application to show how the infr The following snippet shows an extract of one of the templates: +``` resource "scaleway_vpc" "vpc01" { name = "vpc_${var.app_name}" }