-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added key vault service endpoints to the gateway and vmss subnets - Configured the key vault with NACLs to restrict the access only to the virtual network and given management CIDRs - Fixed the graphdb password configuration secret to reference the correct value - Organized the backup module - Added the resource name prefix to the custom roles to avoid clashes
- Loading branch information
1 parent
192a683
commit c7a7d23
Showing
9 changed files
with
109 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
output "storage_account_name" { | ||
description = "Storage account name for storing GraphDB backups" | ||
value = azurerm_storage_account.backup.name | ||
value = azurerm_storage_account.graphdb-backup.name | ||
} | ||
|
||
output "container_name" { | ||
value = azurerm_storage_container.backup.name | ||
description = "Name of the storage container for GraphDB backups" | ||
value = azurerm_storage_container.graphdb-backup.name | ||
} |
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,41 +1,47 @@ | ||
# Common configurations | ||
|
||
variable "resource_name_prefix" { | ||
description = "Resource name prefix used for tagging and naming Azure resources" | ||
type = string | ||
} | ||
|
||
variable "resource_group_name" { | ||
description = "Specifies the name of the Azure resource group in which the Azure Storage Account will be created" | ||
type = string | ||
} | ||
|
||
variable "storage_account_tier" { | ||
default = "Standard" | ||
description = "Specify the performance and redundancy characteristics of the Azure Storage Account that you are creating" | ||
variable "location" { | ||
description = "Azure geographical location where resources will be deployed" | ||
type = string | ||
} | ||
|
||
variable "storage_account_replication_type" { | ||
default = "LRS" | ||
description = "Specify the data redundancy strategy for your Azure Storage Account" | ||
} | ||
|
||
variable "tags" { | ||
description = "Common resource tags." | ||
type = map(string) | ||
default = {} | ||
} | ||
|
||
variable "identity_name" { | ||
description = "Name of a user assigned identity for assigning permissions" | ||
variable "resource_group_name" { | ||
description = "Specifies the name of the Azure resource group in which the Azure Storage Account will be created" | ||
type = string | ||
} | ||
|
||
variable "location" { | ||
description = "Azure geographical location where resources will be deployed" | ||
# Identity | ||
|
||
variable "identity_name" { | ||
description = "Name of a user assigned identity for assigning permissions" | ||
type = string | ||
} | ||
|
||
variable "identity_principal_id" { | ||
description = "Principal identifier of a user assigned identity for assigning permissions" | ||
type = string | ||
} | ||
|
||
# Storage specifics | ||
|
||
variable "storage_account_tier" { | ||
default = "Standard" | ||
description = "Specify the performance and redundancy characteristics of the Azure Storage Account that you are creating" | ||
type = string | ||
} | ||
|
||
variable "storage_account_replication_type" { | ||
default = "LRS" | ||
description = "Specify the data redundancy strategy for your Azure Storage Account" | ||
} |
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