diff --git a/openstack-go/main.go b/openstack-go/main.go index 56094591f..79e34ed74 100644 --- a/openstack-go/main.go +++ b/openstack-go/main.go @@ -10,7 +10,7 @@ func main() { // Create an OpenStack resource (Compute Instance) instance, err := compute.NewInstance(ctx, "test", &compute.InstanceArgs{ FlavorName: pulumi.String("s1-2"), - ImageName: pulumi.String("Ubuntu 16.04"), + ImageName: pulumi.String("Ubuntu 22.04"), }) if err != nil { return err diff --git a/openstack-javascript/index.js b/openstack-javascript/index.js index e24d1b98a..5942117f9 100644 --- a/openstack-javascript/index.js +++ b/openstack-javascript/index.js @@ -5,7 +5,7 @@ const os = require("@pulumi/openstack"); // Create an OpenStack resource (Compute Instance) const instance = new os.compute.Instance("test", { flavorName: "s1-2", - imageName: "Ubuntu 16.04", + imageName: "Ubuntu 22.04", }); // Export the IP of the instance diff --git a/openstack-python/__main__.py b/openstack-python/__main__.py index 692e9c4e2..86cc64fc9 100644 --- a/openstack-python/__main__.py +++ b/openstack-python/__main__.py @@ -6,7 +6,7 @@ # Create an OpenStack resource (Compute Instance) instance = compute.Instance('test', flavor_name='s1-2', - image_name='Ubuntu 16.04') + image_name='Ubuntu 22.04') # Export the IP of the instance pulumi.export('instance_ip', instance.access_ip_v4) diff --git a/openstack-typescript/index.ts b/openstack-typescript/index.ts index ec7f419e6..a741063a1 100644 --- a/openstack-typescript/index.ts +++ b/openstack-typescript/index.ts @@ -4,7 +4,7 @@ import * as os from "@pulumi/openstack"; // Create an OpenStack resource (Compute Instance) const instance = new os.compute.Instance("test", { flavorName: "s1-2", - imageName: "Ubuntu 16.04", + imageName: "Ubuntu 22.04", }); // Export the IP of the instance diff --git a/openstack-yaml/Pulumi.yaml b/openstack-yaml/Pulumi.yaml index e90dceea4..08b982b6b 100644 --- a/openstack-yaml/Pulumi.yaml +++ b/openstack-yaml/Pulumi.yaml @@ -10,7 +10,7 @@ resources: type: openstack:compute:Instance properties: flavorName: s1-2 - imageName: Ubuntu 16.04 + imageName: Ubuntu 22.04 outputs: # Export the IP of the instance