Skip to content

Commit 76b689d

Browse files
authored
Merge pull request #8 from data-platform-hq/feat/upgrade-terraform-to-v1.3
feat: upgrade Terraform required_version to v1.3
2 parents c37863e + 7e5d0a9 commit 76b689d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Terraform module for creation Azure Microsoft SQL Database
1010

1111
| Name | Version |
1212
|------|---------|
13-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
13+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >=1.3 |
1414
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 4.0.1 |
1515

1616
## Providers
@@ -35,7 +35,7 @@ No modules.
3535

3636
| Name | Description | Type | Default | Required |
3737
|------|-------------|------|---------|:--------:|
38-
| <a name="input_databases"></a> [databases](#input\_databases) | Map of objects to configure MSSQL Database | <pre>map(object({<br> collation = optional(string, "SQL_Latin1_General_CP1_CI_AS")<br> sku = optional(string, "GP_S_Gen5_1")<br> max_size_gb = optional(string, "20")<br> min_capacity = optional(string, "0.5")<br> auto_pause_delay_in_minutes = optional(number, 60)<br> create_mode = optional(string, "Default")<br> creation_source_database_id = optional(string, null)<br> storage_account_type = optional(string, "ZRS")<br> }))</pre> | `{}` | no |
38+
| <a name="input_databases"></a> [databases](#input\_databases) | Map of objects to configure MSSQL Database | <pre>map(object({<br/> collation = optional(string, "SQL_Latin1_General_CP1_CI_AS")<br/> sku = optional(string, "GP_S_Gen5_1")<br/> max_size_gb = optional(string, "20")<br/> min_capacity = optional(string, "0.5")<br/> auto_pause_delay_in_minutes = optional(number, 60)<br/> create_mode = optional(string, "Default")<br/> creation_source_database_id = optional(string, null)<br/> storage_account_type = optional(string, "ZRS")<br/> }))</pre> | `{}` | no |
3939
| <a name="input_default_retention_days"></a> [default\_retention\_days](#input\_default\_retention\_days) | Specifies the number of days to keep in the Threat Detection audit logs. | `number` | `3` | no |
4040
| <a name="input_destination_type"></a> [destination\_type](#input\_destination\_type) | Log analytics destination type | `string` | `"Dedicated"` | no |
4141
| <a name="input_enable_diagnostic_setting"></a> [enable\_diagnostic\_setting](#input\_enable\_diagnostic\_setting) | Boolean flag to enabled diagnostic settings for databases | `bool` | `false` | 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)