Skip to content

Commit 2e13d33

Browse files
authored
+ terraform.tfvars
1 parent 94a7817 commit 2e13d33

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Terraform/src/terraform.tfvars

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# ----------------------------------
2+
### Here is some sample data. Please make any necessary modifications. 
3+
# ----------------------------------
4+
5+
# Variable for subscription ID
6+
subscription_id = "" # Add your subscription id number
7+
8+
# Resource group name
9+
resource_group_name = "" # Add your desired RG name
10+
11+
# Location of the resources
12+
location = "Central US"
13+
14+
# SQL Server configuration
15+
sql_server_name = "usernamesqlserver" # replace username with your name
16+
admin_username = "adminuser" # replace with your desired user name
17+
admin_password = "P@ssw0rd1234" # Make sure to use a strong password
18+
19+
# SQL Database name
20+
sql_database_name = "workshopdbusername" # replace username with your name
21+
22+
# Variables for remote state storage
23+
storage_account_name = "storageacctworkshop01"
24+
container_name = "tfstate"
25+
26+
# Variable for administrator principal ID
27+
admin_principal_id = ""
28+
29+
# Microsoft Fabric Capacity configuration
30+
solution_name = "capacitynamews" # choose your capacity name
31+
fabric_capacity_admin_upns = ["user-email-here", "another-user-email-here"]
32+
fabric_capacity_sku = "F64" # Choose your SKU like F64

0 commit comments

Comments
 (0)