Skip to content

Commit cc9f677

Browse files
MyroslavLevchykMyroslavLevchyk
authored andcommitted
fix: upgrade Terraform required_version to v1.3
1 parent 1f77926 commit cc9f677

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module "linux_virtual_machine" {
4242

4343
| Name | Version |
4444
|------|---------|
45-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >=1.0.0 |
45+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >=1.3 |
4646
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 4.0.1 |
4747

4848
## Providers
@@ -67,21 +67,21 @@ No modules.
6767

6868
| Name | Description | Type | Default | Required |
6969
|------|-------------|------|---------|:--------:|
70-
| <a name="input_admin_ssh_key"></a> [admin\_ssh\_key](#input\_admin\_ssh\_key) | Objects to configure ssh key reference for virtual machine | <pre>object({<br/> username = optional(string, "adminuser")<br/> public_key = optional(string)<br/> })</pre> | n/a | yes |
70+
| <a name="input_admin_ssh_key"></a> [admin\_ssh\_key](#input\_admin\_ssh\_key) | Objects to configure ssh key reference for virtual machine | <pre>object({<br> username = optional(string, "adminuser")<br> public_key = optional(string)<br> })</pre> | n/a | yes |
7171
| <a name="input_custom_network_interface_name"></a> [custom\_network\_interface\_name](#input\_custom\_network\_interface\_name) | Specifies the name of the virtual machine interface name resource | `string` | `null` | no |
7272
| <a name="input_custom_public_ip_name"></a> [custom\_public\_ip\_name](#input\_custom\_public\_ip\_name) | Specifies the name of the public ip name name resource | `string` | `null` | no |
7373
| <a name="input_custom_virtual_machine_name"></a> [custom\_virtual\_machine\_name](#input\_custom\_virtual\_machine\_name) | Specifies the name of the virtual machine name resource | `string` | `null` | no |
7474
| <a name="input_env"></a> [env](#input\_env) | Environment name | `string` | n/a | yes |
7575
| <a name="input_identity_enabled"></a> [identity\_enabled](#input\_identity\_enabled) | Boolean flag than enables creation of System Assigned identity to VM | `bool` | `false` | no |
7676
| <a name="input_location"></a> [location](#input\_location) | Azure location | `string` | n/a | yes |
7777
| <a name="input_network_interface_private_ip_address_allocation"></a> [network\_interface\_private\_ip\_address\_allocation](#input\_network\_interface\_private\_ip\_address\_allocation) | The allocation method used for the Private IP Address. | `string` | `"Dynamic"` | no |
78-
| <a name="input_os_disk"></a> [os\_disk](#input\_os\_disk) | Objects to configure os disk reference for virtual machine | <pre>object({<br/> caching = string<br/> storage_account_type = string<br/> })</pre> | <pre>{<br/> "caching": "ReadWrite",<br/> "storage_account_type": "Standard_LRS"<br/>}</pre> | no |
78+
| <a name="input_os_disk"></a> [os\_disk](#input\_os\_disk) | Objects to configure os disk reference for virtual machine | <pre>object({<br> caching = string<br> storage_account_type = string<br> })</pre> | <pre>{<br> "caching": "ReadWrite",<br> "storage_account_type": "Standard_LRS"<br>}</pre> | no |
7979
| <a name="input_password_access_enabled"></a> [password\_access\_enabled](#input\_password\_access\_enabled) | Boolean flag that enables access using password | `bool` | `false` | no |
8080
| <a name="input_project"></a> [project](#input\_project) | Project name | `string` | n/a | yes |
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-jammy",<br/> "publisher": "Canonical",<br/> "sku": "22_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 |

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">=1.0.0"
2+
required_version = ">=1.3"
33

44
required_providers {
55
azurerm = {

0 commit comments

Comments
 (0)