Skip to content

Commit 978698b

Browse files
authored
Merge pull request #587 from lonegunmanb/v4
Add `v4` sub-folder so this module could run with AzureRM provider both `v3` and `v4`.
2 parents 25668fa + cb4d627 commit 978698b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+700
-46
lines changed

.github/workflows/acc-test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212

1313
jobs:
1414
check:
15+
timeout-minutes: 720
1516
runs-on: ubuntu-latest
1617
steps:
1718
- name: Checking for Fork

README.md

Lines changed: 2 additions & 0 deletions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
data "azurerm_client_config" "this" {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../application_gateway_ingress/k8s_workload.tf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../application_gateway_ingress/main.tf
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module "aks" {
2+
#checkov:skip=CKV_AZURE_141:We enable admin account here so we can provision K8s resources directly in this simple example
3+
source = "../../v4"
4+
rbac_aad_tenant_id = data.azurerm_client_config.this.tenant_id
5+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../application_gateway_ingress/outputs.tf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../application_gateway_ingress/providers.tf
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# tflint-ignore-file: terraform_required_version_declaration
2+
3+
terraform {
4+
required_providers {
5+
azurerm = {
6+
source = "hashicorp/azurerm"
7+
version = "~> 4.0"
8+
}
9+
kubernetes = {
10+
source = "hashicorp/kubernetes"
11+
version = "2.22.0"
12+
}
13+
random = {
14+
source = "hashicorp/random"
15+
version = "3.3.2"
16+
}
17+
time = {
18+
source = "hashicorp/time"
19+
version = "0.9.1"
20+
}
21+
}
22+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../application_gateway_ingress/variables.tf

0 commit comments

Comments
 (0)