This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
74 additions
and
62 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
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
4 changes: 2 additions & 2 deletions
4
...print_shared_services.sandpit.auto.tfvars → ...vdc_demo/blueprint_operations.auto.tfvars
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
30 changes: 16 additions & 14 deletions
30
landingzones/landingzone_vdc_demo/blueprint_operations/blueprint.tf
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,27 +1,29 @@ | ||
#Specify the Azure Site Recovery repository | ||
module "site_recovery" { | ||
source = "aztfmod/caf-site-recovery/azurerm" | ||
version = "0.1.2" | ||
version = "1.0.0" | ||
|
||
asr_vault_name = var.asr_vault_name | ||
resource_group_name = var.asr_rg | ||
convention = var.global_settings.convention | ||
name = var.asr_config.asr_vault_name | ||
rg = var.asr_rg | ||
location = var.location | ||
tags = var.tags | ||
la_workspace_id = var.log_analytics_workspace.id | ||
diagnostics_map = var.diagnostics_map | ||
diagnostics_settings = var.asr_diags | ||
tags = var.global_settings.tags_hub | ||
la_workspace_id = var.caf_foundations_accounting.log_analytics_workspace.id | ||
diagnostics_map = var.caf_foundations_accounting.diagnostics_map | ||
diagnostics_settings = var.asr_config.asr_diags | ||
} | ||
|
||
#Creates the Azure automation account | ||
module "automation" { | ||
source = "aztfmod/caf-automation/azurerm" | ||
version = "0.1.2" | ||
version = "1.0.0" | ||
|
||
auto_name = var.auto_account | ||
resource_group_name = var.auto_rg | ||
convention = var.global_settings.convention | ||
name = var.auto_config.auto_account | ||
rg = var.auto_rg | ||
location = var.location | ||
tags = var.tags | ||
la_workspace_id = var.log_analytics_workspace.id | ||
diagnostics_map = var.diagnostics_map | ||
diagnostics_settings = var.auto_diags | ||
tags = var.global_settings.tags_hub | ||
la_workspace_id = var.caf_foundations_accounting.log_analytics_workspace.id | ||
diagnostics_map = var.caf_foundations_accounting.diagnostics_map | ||
diagnostics_settings = var.auto_config.auto_diags | ||
} |
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
36 changes: 12 additions & 24 deletions
36
landingzones/landingzone_vdc_demo/blueprint_operations/variables.tf
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,48 +1,36 @@ | ||
|
||
variable "asr_vault_name" { | ||
description ="Name for the Azure Site Recovery Vault" | ||
variable "asr_config" { | ||
description = "config for the Azure Site Recovery Vault" | ||
} | ||
|
||
variable "asr_rg" { | ||
description ="Name for RG of Azure Site Recovery Vault" | ||
} | ||
|
||
variable "auto_account" { | ||
description ="Name for the automation account" | ||
variable "auto_config" { | ||
description = "config for the automation account" | ||
} | ||
|
||
variable "auto_rg" { | ||
description ="Name for RG of the automation account" | ||
} | ||
|
||
variable "log_analytics_workspace" { | ||
description = "map structure with the list of log analytics data" | ||
} | ||
|
||
variable "diagnostics_map" { | ||
description = "Structure that contains the diagnostics data." | ||
} | ||
|
||
variable "location" { | ||
description = "Azure region to deploy the resources." | ||
} | ||
|
||
variable "tags" { | ||
description = "map of the tags to be applied." | ||
} | ||
|
||
variable "asr_diags" { | ||
description = "(Required) Structure for the diagnostics to be deployed for ASR." | ||
} | ||
|
||
variable "auto_diags" { | ||
description = "(Required) Structure for the diagnostics to be deployed for automation account." | ||
} | ||
|
||
variable "resource_groups_operations" { | ||
description = "(Required) resource group for operations" | ||
} | ||
|
||
variable "prefix" { | ||
description = "(Optional) Prefix to uniquely identify the deployment" | ||
} | ||
|
||
variable "global_settings" { | ||
description = "global settings" | ||
} | ||
|
||
variable "caf_foundations_accounting" { | ||
description = "caf_foundations_accounting 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
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