Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Update Terraform provider and modules (#734)
Browse files Browse the repository at this point in the history
* Updated AzureRM provider to 3.105 and AzAPI provider to 2.50

* Updated to 1.6.4 of Container App module

* Updated Key Vault module to 0.4.2
  • Loading branch information
DrizzlyOwl authored May 30, 2024
1 parent 02ef34c commit 0739343
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 30 deletions.
52 changes: 26 additions & 26 deletions terraform/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ If everything looks good, answer `yes` and wait for the new infrastructure to be
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.6.1 |
| <a name="requirement_azapi"></a> [azapi](#requirement\_azapi) | >= 1.13.0 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 3.76.0 |
| <a name="requirement_statuscake"></a> [statuscake](#requirement\_statuscake) | >= 2.1.0 |

Expand All @@ -136,8 +137,8 @@ No providers.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_azure_container_apps_hosting"></a> [azure\_container\_apps\_hosting](#module\_azure\_container\_apps\_hosting) | github.com/DFE-Digital/terraform-azurerm-container-apps-hosting | v1.6.2 |
| <a name="module_azurerm_key_vault"></a> [azurerm\_key\_vault](#module\_azurerm\_key\_vault) | github.com/DFE-Digital/terraform-azurerm-key-vault-tfvars | v0.4.1 |
| <a name="module_azure_container_apps_hosting"></a> [azure\_container\_apps\_hosting](#module\_azure\_container\_apps\_hosting) | github.com/DFE-Digital/terraform-azurerm-container-apps-hosting | v1.6.4 |
| <a name="module_azurerm_key_vault"></a> [azurerm\_key\_vault](#module\_azurerm\_key\_vault) | github.com/DFE-Digital/terraform-azurerm-key-vault-tfvars | v0.4.2 |
| <a name="module_statuscake-tls-monitor"></a> [statuscake-tls-monitor](#module\_statuscake-tls-monitor) | github.com/dfe-digital/terraform-statuscake-tls-monitor | v0.1.3 |

## Resources
Expand Down
2 changes: 1 addition & 1 deletion terraform/container-apps-hosting.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "azure_container_apps_hosting" {
source = "github.com/DFE-Digital/terraform-azurerm-container-apps-hosting?ref=v1.6.2"
source = "github.com/DFE-Digital/terraform-azurerm-container-apps-hosting?ref=v1.6.4"

environment = local.environment
project_name = local.project_name
Expand Down
2 changes: 1 addition & 1 deletion terraform/key-vault-tfvars-secrets.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "azurerm_key_vault" {
source = "github.com/DFE-Digital/terraform-azurerm-key-vault-tfvars?ref=v0.4.1"
source = "github.com/DFE-Digital/terraform-azurerm-key-vault-tfvars?ref=v0.4.2"

environment = local.environment
project_name = local.project_name
Expand Down
4 changes: 4 additions & 0 deletions terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ provider "azurerm" {
skip_provider_registration = true
}

provider "azapi" {
enable_hcl_output_for_data_source = true
}

provider "statuscake" {
api_token = var.statuscake_api_token
}
4 changes: 4 additions & 0 deletions terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ terraform {
source = "hashicorp/azurerm"
version = ">= 3.76.0"
}
azapi = {
source = "Azure/azapi"
version = ">= 1.13.0"
}
statuscake = {
source = "StatusCakeDev/statuscake"
version = ">= 2.1.0"
Expand Down

0 comments on commit 0739343

Please sign in to comment.