You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-46Lines changed: 13 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,10 @@ A single database is the quickest and simplest deployment option for Azure SQL D
6
6
7
7
You can also create a single database in the provisioned or serverless compute tier. A provisioned database is pre-allocated a fixed amount of computing resources, including CPU and memory, and uses one of two purchasing models. This module creates a provisioned database using the vCore-based purchasing model, but you can choose a DTU-based model as well.
8
8
9
-
## These types of resources are supported
9
+
> **[NOTE]**
10
+
> **This module now supports the meta arguments including `providers`, `depends_on`, `count`, and `for_each`.**
@@ -25,6 +28,11 @@ You can also create a single database in the provisioned or serverless compute t
25
28
## Module Usage
26
29
27
30
```hcl
31
+
# Azurerm provider configuration
32
+
provider "azurerm" {
33
+
features {}
34
+
}
35
+
28
36
module "mssql-server" {
29
37
source = "kumarvna/mssql-db/azurerm"
30
38
version = "1.1.0"
@@ -183,55 +191,14 @@ Installation of the Microsoft `sqlcmd` utility on [Ubuntu](https://docs.microsof
183
191
184
192
## Recommended naming and tagging conventions
185
193
186
-
Well-defined naming and metadata tagging conventions help to quickly locate and manage resources. These conventions also help associate cloud usage costs with business teams via chargeback and show back accounting mechanisms.
194
+
Applying tags to your Azure resources, resource groups, and subscriptions to logically organize them into a taxonomy. Each tag consists of a name and a value pair. For example, you can apply the name `Environment` and the value `Production` to all the resources in production.
195
+
For recommendations on how to implement a tagging strategy, see Resource naming and tagging decision guide.
187
196
188
-
### Resource naming
197
+
>**Important** :
198
+
Tag names are case-insensitive for operations. A tag with a tag name, regardless of the casing, is updated or retrieved. However, the resource provider might keep the casing you provide for the tag name. You'll see that casing in cost reports. **Tag values are case-sensitive.**
189
199
190
200
An effective naming convention assembles resource names by using important resource information as parts of a resource's name. For example, using these [recommended naming conventions](https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging#example-names), a public IP resource for a production SharePoint workload is named like this: `pip-sharepoint-prod-westus-001`.
191
201
192
-
> ### Metadata tags
193
-
194
-
When applying metadata tags to the cloud resources, you can include information about those assets that couldn't be included in the resource name. You can use that information to perform more sophisticated filtering and reporting on resources. This information can be used by IT or business teams to find resources or generate reports about resource usage and billing.
195
-
196
-
The following list provides the recommended common tags that capture important context and information about resources. Use this list as a starting point to establish your tagging conventions.
197
-
198
-
Tag Name|Description|Key|Example Value|Required?
199
-
--------|-----------|---|-------------|---------|
200
-
Project Name|Name of the Project for the infra is created. This is mandatory to create a resource names.|ProjectName|{Project name}|Yes
201
-
Application Name|Name of the application, service, or workload the resource is associated with.|ApplicationName|{app name}|Yes
202
-
Approver|Name Person responsible for approving costs related to this resource.|Approver|{email}|Yes
203
-
Business Unit|Top-level division of your company that owns the subscription or workload the resource belongs to. In smaller organizations, this may represent a single corporate or shared top-level organizational element.|BusinessUnit|FINANCE, MARKETING,{Product Name},CORP,SHARED|Yes
204
-
Cost Center|Accounting cost center associated with this resource.|CostCenter|{number}|Yes
205
-
Disaster Recovery|Business criticality of this application, workload, or service.|DR|Mission Critical, Critical, Essential|Yes
206
-
Environment|Deployment environment of this application, workload, or service.|Env|Prod, Dev, QA, Stage, Test|Yes
207
-
Owner Name|Owner of the application, workload, or service.|Owner|{email}|Yes
208
-
Requester Name|User that requested the creation of this application.|Requestor| {email}|Yes
209
-
Service Class|Service Level Agreement level of this application, workload, or service.|ServiceClass|Dev, Bronze, Silver, Gold|Yes
210
-
Start Date of the project|Date when this application, workload, or service was first deployed.|StartDate|{date}|No
211
-
End Date of the Project|Date when this application, workload, or service is planned to be retired.|EndDate|{date}|No
212
-
213
-
> This module allows you to manage the above metadata tags directly or as an variable using `variables.tf`. All Azure resources which support tagging can be tagged by specifying key-values in argument `tags`. Tag `ResourceName` is added automatically to all resources.
214
-
215
-
```hcl
216
-
module "mssql-server" {
217
-
source = "kumarvna/mssql-db/azurerm"
218
-
version = "1.1.0"
219
-
220
-
# Resource Group, location, VNet and Subnet details
0 commit comments