-
Notifications
You must be signed in to change notification settings - Fork 7
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
Update az_mssql.tf #4
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ resource "azurerm_resource_group" "az_rg" { | |
} | ||
|
||
resource "azurerm_mssql_server" "mssql1" { | ||
name = "mssql1" | ||
name = "mssql1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
resource_group_name = azurerm_resource_group.az_rg.name | ||
location = azurerm_resource_group.az_rg.location | ||
version = "12.0" | ||
|
@@ -108,7 +108,7 @@ resource "azurerm_storage_account" "sa4" { | |
} | ||
|
||
resource "azurerm_mssql_server" "mssql5" { | ||
name = "mssql5" | ||
name = "mssql5" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
resource_group_name = azurerm_resource_group.az_rg.name | ||
location = azurerm_resource_group.az_rg.location | ||
version = "12.0" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resource: azurerm_mssql_server.mssql1 | ID:
BC_AZR_GENERAL_81
How to Fix
Description
Many different types of Azure resources support tags. Tags allow you to add metadata to a resource to help identify ownership, perform cost / billing analysis, and to enrich a resource with other valuable information, such as descriptions and environment names. While there are many ways that tags can be used, we recommend you follow a tagging practice.View Microsoft's recommended tagging best practices here.