-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from aztfmod/ll-sql-remote-tstate
Add rremote state for SQL and app service
- Loading branch information
Showing
10 changed files
with
77 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
|
||
|
||
variable "tags" { | ||
variable tags { | ||
description = "(Required) map of tags for the deployment" | ||
} | ||
|
||
variable "name" { | ||
variable name { | ||
description = "(Required) Name of the App Service" | ||
} | ||
|
||
variable "location" { | ||
variable location { | ||
description = "(Required) Resource Location" | ||
} | ||
|
||
variable "resource_group_name" { | ||
variable resource_group_name { | ||
description = "(Required) Resource group of the App Service" | ||
} | ||
|
||
variable "app_service_plan_id" { | ||
variable app_service_plan_id { | ||
} | ||
|
||
variable "identity" { | ||
variable identity { | ||
default = {} | ||
} | ||
|
||
variable "connection_strings" { | ||
variable connection_strings { | ||
default = {} | ||
} | ||
|
||
variable "app_settings" { | ||
variable app_settings { | ||
default = null | ||
} | ||
|
||
variable "slots" { | ||
variable slots { | ||
default = {} | ||
} | ||
|
||
variable "settings" {} | ||
variable settings {} | ||
|
||
variable global_settings {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
output "id" { | ||
output id { | ||
value = lookup(azurerm_template_deployment.ase.outputs, "id") | ||
description = "App Service Environment Resource Id" | ||
} | ||
|
||
output "name" { | ||
output name { | ||
value = azurecaf_name.ase.result | ||
description = "App Service Environment Name" | ||
} | ||
|
||
output "ilb_ip" { | ||
output ilb_ip { | ||
value = data.external.ase_ilb_ip.result.internalIpAddress | ||
} | ||
|
||
output subnet_id { | ||
value = var.subnet_id | ||
} | ||
|
||
output zone { | ||
value = var.zone | ||
} | ||
|
||
output a_records { | ||
value = azurerm_private_dns_a_record.a_records | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
output "id" { | ||
output id { | ||
value = azurerm_app_service_plan.asp.id | ||
sensitive = true | ||
} | ||
|
||
output "maximum_number_of_workers" { | ||
output maximum_number_of_workers { | ||
value = azurerm_app_service_plan.asp.maximum_number_of_workers | ||
sensitive = true | ||
} | ||
|
||
output ase_id { | ||
value = var.app_service_environment_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters