Skip to content

Commit cba93eb

Browse files
committed
Initial commit: quix-aks module and examples
1 parent a17ee31 commit cba93eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ Repository of production-ready Terraform modules. The primary module is `azure/m
44

55
## Structure
66

7-
- `azure/modules/quix-aks/` (AKS module)
7+
- `modules/quix-aks/` (AKS module)
88
- `main.tf`: resource group wiring and common locals
99
- `network.tf`: VNet, nodes subnet, NAT Gateway and identity
1010
- `aks.tf`: AKS cluster + dynamic node pools
1111
- `rbac.tf`: role assignments for the managed identity
1212
- `bastion.tf`: Azure Bastion + jumpbox (optional)
1313
- `README.md`: terraform-docs generated documentation
14-
- `azure/examples/` usage examples
14+
- `examples/` usage examples
1515
- `public-quix-infr/`: public cluster
1616
- `private-quix-infr/`: private cluster with Bastion + jumpbox
17-
- `azure/BASTION_ACCESS.md`: how to access a private AKS via Bastion
17+
- `BASTION_ACCESS.md`: how to access a private AKS via Bastion
1818

1919
## AKS module (quix-aks)
2020

2121
Module documentation (inputs/outputs/resources):
2222

23-
- `azure/modules/quix-aks/README.md` (generated with terraform-docs)
23+
- [modules/quix-aks/README.md](modules/quix-aks/README.md) (generated with terraform-docs)
2424

2525
Regenerate docs (requires `terraform-docs`):
2626

2727
```bash
28-
cd azure/modules/quix-aks
28+
cd modules/quix-aks
2929
terraform-docs markdown table --output-file README.md --output-mode inject .
3030
```
3131

@@ -34,20 +34,20 @@ terraform-docs markdown table --output-file README.md --output-mode inject .
3434
Public example:
3535

3636
```bash
37-
cd azure/examples/public-quix-infr
37+
cd examples/public-quix-infr
3838
terraform init
3939
terraform apply
4040
```
4141

4242
Private example (with Bastion):
4343

4444
```bash
45-
cd azure/examples/private-quix-infr
45+
cd examples/private-quix-infr
4646
terraform init
4747
terraform apply
4848
```
4949

50-
Access a private AKS: see `azure/BASTION_ACCESS.md`.
50+
Access a private AKS: see `BASTION_ACCESS.md`.
5151

5252
## Requirements
5353

0 commit comments

Comments
 (0)