-
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.
Merge pull request #17 from Ontotext-AD/TES-358-key-vault-security
TES-358: Added Key Vault NACLs
- Loading branch information
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