-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Automatic Update <[email protected]>
- Loading branch information
Showing
48 changed files
with
422 additions
and
996 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
33 changes: 0 additions & 33 deletions
33
terraform/subscriptions/modules/networksecuritygroup/main.tf
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
terraform/subscriptions/modules/networksecuritygroup/output.tf
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
terraform/subscriptions/modules/networksecuritygroup/variables.tf
This file was deleted.
Oops, something went wrong.
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,18 +1,19 @@ | ||
resource "azurerm_redis_cache" "this" { | ||
for_each = toset(["qa", "prod"]) | ||
name = "${var.name}-${each.key}" | ||
location = var.location | ||
resource_group_name = var.rg_name | ||
capacity = 1 | ||
family = "C" | ||
sku_name = var.sku_name | ||
minimum_tls_version = "1.2" | ||
for_each = toset(["qa", "prod"]) | ||
name = "${var.name}-${each.key}" | ||
location = var.location | ||
resource_group_name = var.rg_name | ||
capacity = 1 | ||
family = "C" | ||
sku_name = var.sku_name | ||
minimum_tls_version = "1.2" | ||
public_network_access_enabled = false | ||
redis_configuration { | ||
maxmemory_reserved = 125 | ||
maxmemory_delta = 125 | ||
maxfragmentationmemory_reserved = 125 | ||
|
||
data_persistence_authentication_method = "SAS" | ||
maxmemory_policy = "volatile-lru" | ||
# data_persistence_authentication_method = "SAS" | ||
maxmemory_policy = "volatile-lru" | ||
} | ||
} |
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,31 +0,0 @@ | ||
locals { | ||
flattened_clusters = { | ||
for key, value in var.clusters : key => { | ||
name = key | ||
resource_group_name = value.resource_group_name | ||
location = value.location | ||
destination_address_prefix = value.destination_address_prefix | ||
} | ||
} | ||
} | ||
|
||
variable "resource_groups" { | ||
type = list(string) | ||
default = ["clusters-c2"] | ||
} | ||
|
||
variable "clusters" { | ||
type = map(object({ | ||
resource_group_name = optional(string, "clusters") | ||
location = optional(string, "northeurope") | ||
destination_address_prefix = string | ||
})) | ||
default = { | ||
# weekly-52 = { | ||
# destination_address_prefix = "20.223.40.149" | ||
# } | ||
# weekly-01 = { | ||
# destination_address_prefix = "20.223.40.148" | ||
# } | ||
} | ||
} | ||
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
45 changes: 0 additions & 45 deletions
45
terraform/subscriptions/s940/c2/virtualnetwork/.terraform.lock.hcl
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.