Skip to content

Commit 2a89d2d

Browse files
authored
docs: update instance image (#1442)
1 parent 1b28a43 commit 2a89d2d

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

docs/data-sources/marketplace_image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gets local image ID of an image from its label name.
1212

1313
```hcl
1414
data "scaleway_marketplace_image" "my_image" {
15-
label = "ubuntu_focal"
15+
label = "ubuntu_jammy"
1616
}
1717
```
1818

docs/data-sources/vpc_public_gateway_dhcp_reservation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource scaleway_vpc_private_network main {
1515
}
1616
1717
resource "scaleway_instance_server" "main" {
18-
image = "ubuntu_focal"
18+
image = "ubuntu_jammy"
1919
type = "DEV1-S"
2020
zone = "fr-par-1"
2121
@@ -67,7 +67,7 @@ resource "scaleway_instance_security_group" main {
6767
}
6868
6969
resource "scaleway_instance_server" "main" {
70-
image = "ubuntu_focal"
70+
image = "ubuntu_jammy"
7171
type = "DEV1-S"
7272
zone = "fr-par-1"
7373

docs/guides/migration_guide_v2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ v1.X:
188188
```hcl
189189
resource "scaleway_instance_server" "web" {
190190
type = "DEV1-S"
191-
image = "ubuntu_focal"
191+
image = "ubuntu_jammy"
192192
193193
user_data {
194194
key = "foo"
@@ -204,7 +204,7 @@ v2.X:
204204
```hcl
205205
resource "scaleway_instance_server" "web" {
206206
type = "DEV1-S"
207-
image = "ubuntu_focal"
207+
image = "ubuntu_jammy"
208208
209209
user_data = {
210210
foo = "bar"
@@ -234,7 +234,7 @@ resource "scaleway_instance_volume" "data" {
234234
235235
resource "scaleway_instance_server" "web" {
236236
type = "DEV1-L"
237-
image = "ubuntu_focal"
237+
image = "ubuntu_jammy"
238238
239239
tags = [ "hello", "public" ]
240240

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ resource "scaleway_instance_security_group" "www" {
103103
resource "scaleway_instance_server" "web" {
104104
project_id = var.project_id
105105
type = "DEV1-L"
106-
image = "ubuntu_focal"
106+
image = "ubuntu_jammy"
107107
108108
tags = ["front", "web"]
109109

docs/resources/domain_record.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ resource "scaleway_instance_ip" "public_ip" {
146146
resource "scaleway_instance_server" "web" {
147147
project_id = var.project_id
148148
type = "DEV1-S"
149-
image = "ubuntu_focal"
149+
image = "ubuntu_jammy"
150150
tags = ["front", "web"]
151151
ip_id = scaleway_instance_ip.public_ip.id
152152

docs/resources/instance_image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "scaleway_instance_image" "volume_image" {
3333

3434
```hcl
3535
resource "scaleway_instance_server" "server" {
36-
image = "ubuntu_focal"
36+
image = "ubuntu_jammy"
3737
type = "DEV1-S"
3838
}
3939
@@ -51,7 +51,7 @@ resource "scaleway_instance_image" "server_image" {
5151

5252
```hcl
5353
resource "scaleway_instance_server" "server" {
54-
image = "ubuntu_focal"
54+
image = "ubuntu_jammy"
5555
type = "DEV1-S"
5656
}
5757

docs/resources/instance_private_nic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resource scaleway_vpc_private_network pn01 {
2929
}
3030
3131
resource "scaleway_instance_server" "base" {
32-
image = "ubuntu_focal"
32+
image = "ubuntu_jammy"
3333
type = "DEV1-S"
3434
zone = scaleway_vpc_private_network.pn01.zone
3535
}

docs/resources/instance_server.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "scaleway_instance_ip" "public_ip" {}
1919
2020
resource "scaleway_instance_server" "web" {
2121
type = "DEV1-S"
22-
image = "ubuntu_focal"
22+
image = "ubuntu_jammy"
2323
ip_id = scaleway_instance_ip.public_ip.id
2424
}
2525
```
@@ -34,7 +34,7 @@ resource "scaleway_instance_volume" "data" {
3434
3535
resource "scaleway_instance_server" "web" {
3636
type = "DEV1-S"
37-
image = "ubuntu_focal"
37+
image = "ubuntu_jammy"
3838
3939
tags = [ "hello", "public" ]
4040
@@ -92,7 +92,7 @@ resource "scaleway_instance_security_group" "www" {
9292
9393
resource "scaleway_instance_server" "web" {
9494
type = "DEV1-S"
95-
image = "ubuntu_focal"
95+
image = "ubuntu_jammy"
9696
9797
security_group_id= scaleway_instance_security_group.www.id
9898
}
@@ -103,7 +103,7 @@ resource "scaleway_instance_server" "web" {
103103
```hcl
104104
resource "scaleway_instance_server" "web" {
105105
type = "DEV1-S"
106-
image = "ubuntu_focal"
106+
image = "ubuntu_jammy"
107107
108108
user_data = {
109109
foo = "bar"
@@ -120,7 +120,7 @@ resource scaleway_vpc_private_network pn01 {
120120
}
121121
122122
resource "scaleway_instance_server" "base" {
123-
image = "ubuntu_focal"
123+
image = "ubuntu_jammy"
124124
type = "DEV1-S"
125125
126126
private_network {

docs/resources/vpc_public_gateway_dhcp_reservation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource scaleway_vpc_private_network main {
2424
}
2525
2626
resource "scaleway_instance_server" "main" {
27-
image = "ubuntu_focal"
27+
image = "ubuntu_jammy"
2828
type = "DEV1-S"
2929
zone = "fr-par-1"
3030

0 commit comments

Comments
 (0)