Skip to content

Commit 83e6962

Browse files
MyroslavLevchykMyroslavLevchyk
authored andcommitted
feat: upgrade to Ubuntu v22
1 parent ec7f259 commit 83e6962

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ No modules.
8181
| <a name="input_public_ip_allocation_method"></a> [public\_ip\_allocation\_method](#input\_public\_ip\_allocation\_method) | Defines the allocation method for this IP address. Possible values are Static or Dynamic | `string` | `"Static"` | no |
8282
| <a name="input_public_ip_enabled"></a> [public\_ip\_enabled](#input\_public\_ip\_enabled) | Boolean flag to enable Public Ip address creation and assignment to Virtual Machine | `bool` | `true` | no |
8383
| <a name="input_resource_group"></a> [resource\_group](#input\_resource\_group) | The name of the resource group | `string` | n/a | yes |
84-
| <a name="input_source_image_reference"></a> [source\_image\_reference](#input\_source\_image\_reference) | Objects to configure source image reference for virtual machine | <pre>object({<br> publisher = string<br> offer = string<br> sku = string<br> version = string<br> })</pre> | <pre>{<br> "offer": "0001-com-ubuntu-server-focal",<br> "publisher": "Canonical",<br> "sku": "20_04-lts",<br> "version": "latest"<br>}</pre> | no |
84+
| <a name="input_source_image_reference"></a> [source\_image\_reference](#input\_source\_image\_reference) | Objects to configure source image reference for virtual machine | <pre>object({<br> publisher = string<br> offer = string<br> sku = string<br> version = string<br> })</pre> | <pre>{<br> "offer": "0001-com-ubuntu-server-jammy",<br> "publisher": "Canonical",<br> "sku": "22_04-lts",<br> "version": "latest"<br>}</pre> | no |
8585
| <a name="input_subnet_id"></a> [subnet\_id](#input\_subnet\_id) | The ID of the Subnet where this Network Interface should be located in. | `string` | n/a | yes |
8686
| <a name="input_suffix"></a> [suffix](#input\_suffix) | Optional suffix that would be added to the end of resources names. It is recommended to use dash at the beginning of variable (e.x., '-example') | `string` | `""` | no |
8787
| <a name="input_tags"></a> [tags](#input\_tags) | Resource tags | `map(any)` | `{}` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ variable "source_image_reference" {
119119
description = "Objects to configure source image reference for virtual machine"
120120
default = {
121121
publisher = "Canonical"
122-
offer = "0001-com-ubuntu-server-focal"
123-
sku = "20_04-lts"
122+
offer = "0001-com-ubuntu-server-jammy"
123+
sku = "22_04-lts"
124124
version = "latest"
125125
}
126126
}

0 commit comments

Comments
 (0)