Skip to content

Commit 507c308

Browse files
authored
Merge pull request #18 from data-platform-hq/fix/change-to-azure_ad_object_id-variable
fix: change to azure_ad_object_id variable
2 parents 9545cd8 + 14732f3 commit 507c308

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ No modules.
7373
| <a name="input_admin_password"></a> [admin\_password](#input\_admin\_password) | The password associated with the admin\_username | `string` | n/a | yes |
7474
| <a name="input_auto_rotation_enabled"></a> [auto\_rotation\_enabled](#input\_auto\_rotation\_enabled) | Server will continuously check the key vault for any new versions of the key | `bool` | `true` | no |
7575
| <a name="input_azure_ad_admin_login"></a> [azure\_ad\_admin\_login](#input\_azure\_ad\_admin\_login) | The login username of the Azure AD Administrator of this SQL Server. | `string` | n/a | yes |
76-
| <a name="input_azure_ad_admin_object_id"></a> [azure\_ad\_admin\_object\_id](#input\_azure\_ad\_admin\_object\_id) | The object id of the Azure AD Administrator of this SQL Server | `string` | n/a | yes |
76+
| <a name="input_azure_ad_object_id"></a> [azure\_ad\_object\_id](#input\_azure\_ad\_object\_id) | The object id of the Azure AD Administrator of this SQL Server | `string` | n/a | yes |
7777
| <a name="input_connection_policy"></a> [connection\_policy](#input\_connection\_policy) | The connection policy the server will use: [Default\|Proxy\|Redirect] | `string` | `"Default"` | no |
7878
| <a name="input_custom_mssql_server_name"></a> [custom\_mssql\_server\_name](#input\_custom\_mssql\_server\_name) | The name of the Microsoft SQL Server | `string` | `null` | no |
7979
| <a name="input_env"></a> [env](#input\_env) | Environment name | `string` | n/a | yes |

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resource "azurerm_mssql_server" "this" {
2929

3030
azuread_administrator {
3131
login_username = var.azure_ad_admin_login
32-
object_id = var.azure_ad_admin_object_id
32+
object_id = var.azure_ad_object_id
3333
}
3434
}
3535

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ variable "azure_ad_admin_login" {
3333
description = "The login username of the Azure AD Administrator of this SQL Server."
3434
}
3535

36-
variable "azure_ad_admin_object_id" {
36+
variable "azure_ad_object_id" {
3737
type = string
3838
description = "The object id of the Azure AD Administrator of this SQL Server"
3939
}

0 commit comments

Comments
 (0)