Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 263344b

Browse files
author
Benjamin P. Jung
committed
Initial commit.
0 parents  commit 263344b

10 files changed

+808
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
8+
[*.{json,tf}]
9+
indent_style = space
10+
indent_size = 2

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.terraform/
2+
*.tfstate*

.markdownlint.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"line-length": false,
3+
"no-duplicate-heading": false
4+
}

.vscode/extensions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"davidanson.vscode-markdownlint",
4+
"editorconfig.editorconfig",
5+
"mauve.terraform"
6+
7+
]
8+
}

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
[1.0.0] - unreleased
9+
10+
## Added
11+
12+
- Initial version

LICENSE

+373
Large diffs are not rendered by default.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Terraform module: AWS ALB Ingress Controller installation
2+
3+
This Terraform module can be used to install the [AWS ALB Ingress Controller](https://github.com/kubernetes-sigs/aws-alb-ingress-controller)
4+
into a Kubernetes cluster.

0 commit comments

Comments
 (0)