Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: tf-az-overlays-containerinstance
name: terraform-az-overlays-containerinstance
description: Terraform overlay module for Azure Container Instances
annotations:
github.com/project-slug: POps-Rox/tf-az-overlays-containerinstance
github.com/project-slug: POps-Rox/terraform-az-overlays-containerinstance
backstage.io/techdocs-ref: dir:.
tags:
- terraform
- terraform-module
- azure
- platform-ops
links:
- url: https://github.com/POps-Rox/tf-az-overlays-containerinstance
- url: https://github.com/POps-Rox/terraform-az-overlays-containerinstance
title: GitHub Repository
icon: github
spec:
Expand Down
4 changes: 2 additions & 2 deletions examples/Commerical/complete/dependencies.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

module "aci-storage-account" {
source = "github.com/POps-Rox/tf-az-overlays-storageaccount"
source = "github.com/POps-Rox/terraform-az-overlays-storageaccount"

Check warning on line 27 in examples/Commerical/complete/dependencies.tf

View workflow job for this annotation

GitHub Actions / 🔍 TFLint

Module source "github.com/POps-Rox/terraform-az-overlays-storageaccount" is not pinned

depends_on = [azurerm_resource_group.aci-network-rg]

Expand Down Expand Up @@ -58,7 +58,7 @@
}

module "aci-acr" {
source = "github.com/POps-Rox/tf-az-overlays-containerregistry"
source = "github.com/POps-Rox/terraform-az-overlays-containerregistry"

Check warning on line 61 in examples/Commerical/complete/dependencies.tf

View workflow job for this annotation

GitHub Actions / 🔍 TFLint

Module source "github.com/POps-Rox/terraform-az-overlays-containerregistry" is not pinned

depends_on = [azurerm_resource_group.aci-network-rg]

Expand Down
2 changes: 1 addition & 1 deletion examples/Commerical/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

module "mod_aci" {
#source = "github.com/POps-Rox/tf-az-overlays-containerinstance"
#source = "github.com/POps-Rox/terraform-az-overlays-containerinstance"
#version = "x.x.x"
source = "../../.."

Expand Down
2 changes: 1 addition & 1 deletion examples/Commerical/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

module "mod_aci" {
#source = "github.com/POps-Rox/tf-az-overlays-containerinstance"
#source = "github.com/POps-Rox/terraform-az-overlays-containerinstance"
#version = "x.x.x"
source = "../../.."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

module "mod_aci" {
#source = "github.com/POps-Rox/tf-az-overlays-containerinstance"
#source = "github.com/POps-Rox/terraform-az-overlays-containerinstance"
#version = "x.x.x"
source = "../../.."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

module "mod_aci" {
#source = "github.com/POps-Rox/tf-az-overlays-containerinstance"
#source = "github.com/POps-Rox/terraform-az-overlays-containerinstance"
#version = "x.x.x"
source = "../../.."

Expand Down
4 changes: 2 additions & 2 deletions modules.aci.scaffolding.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#--------------------------------------
# This module will lookup the Azure Region and return the short name for the region
module "mod_azure_region_lookup" {
source = "github.com/POps-Rox/tf-az-overlays-azregionslookup"
source = "github.com/POps-Rox/terraform-az-overlays-azregionslookup"

Check warning on line 9 in modules.aci.scaffolding.tf

View workflow job for this annotation

GitHub Actions / 🔍 TFLint

Module source "github.com/POps-Rox/terraform-az-overlays-azregionslookup" is not pinned

azure_region = var.location
}
Expand All @@ -23,7 +23,7 @@
}

module "mod_scaffold_rg" {
source = "github.com/POps-Rox/tf-az-overlays-resourcegroup"
source = "github.com/POps-Rox/terraform-az-overlays-resourcegroup"

Check warning on line 26 in modules.aci.scaffolding.tf

View workflow job for this annotation

GitHub Actions / 🔍 TFLint

Module source "github.com/POps-Rox/terraform-az-overlays-resourcegroup" is not pinned

count = var.create_resource_group ? 1 : 0

Expand Down
Loading