Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change to azure_ad_object_id variable #18

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ No modules.
| <a name="input_admin_password"></a> [admin\_password](#input\_admin\_password) | The password associated with the admin\_username | `string` | n/a | yes |
| <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 |
| <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 |
| <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 |
| <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 |
| <a name="input_connection_policy"></a> [connection\_policy](#input\_connection\_policy) | The connection policy the server will use: [Default\|Proxy\|Redirect] | `string` | `"Default"` | no |
| <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 |
| <a name="input_env"></a> [env](#input\_env) | Environment name | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "azurerm_mssql_server" "this" {

azuread_administrator {
login_username = var.azure_ad_admin_login
object_id = var.azure_ad_admin_object_id
object_id = var.azure_ad_object_id
}
}

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ variable "azure_ad_admin_login" {
description = "The login username of the Azure AD Administrator of this SQL Server."
}

variable "azure_ad_admin_object_id" {
variable "azure_ad_object_id" {
type = string
description = "The object id of the Azure AD Administrator of this SQL Server"
}
Expand Down
Loading