This commit is contained in:
2023-07-24 10:33:23 +02:00
parent a39bd011ba
commit 0c85a7c63f
2 changed files with 21 additions and 21 deletions

View File

@@ -27,14 +27,14 @@ locals {
},[for z in var.zones: { },[for z in var.zones: {
"${z.name}" = join("\n", concat([ "${z.name}" = join("\n", concat([
"$TTL 60", "$TTL 60",
"$ORIGIN ${z.name}.", "$ORIGIN ${z["name"]}.",
local.soa-ns local.soa-ns
], ],
[for k,v in z.["hosts"]: format("%s IN A %s", k, v)], [for k,v in z["hosts"]: format("%s IN A %s", k, v)],
[for k,v in z.["hosts6"]: format("%s IN AAAA %s", k, v)], [for k,v in z["hosts6"]: format("%s IN AAAA %s", k, v)],
[for k,v in z.["alias"]: format("%s IN CNAME %s", k, v)], [for k,v in z["alias"]: format("%s IN CNAME %s", k, v)],
z.["wildcard"]!=""?[format("*.%s. IN A %s", z.name, z.wildcard)]:[], z["wildcard"]!=""?[format("*.%s. IN A %s", z.name, z.wildcard)]:[],
z.["wildcard6"]!=""?[format("*.%s. IN AAAA %s", z.namz, z.wildcard6)]:[], z["wildcard6"]!=""?[format("*.%s. IN AAAA %s", z.namz, z.wildcard6)]:[],
)) ))
}]...) }]...)
} }

View File

@@ -6,11 +6,6 @@ metadata:
name: dns name: dns
description: null description: null
options: options:
sub-domain:
default: dns
examples:
- dns
type: string
zones: zones:
default: [] default: []
items: items:
@@ -35,16 +30,6 @@ options:
type: string type: string
type: object type: object
type: array type: array
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
domain:
default: your-company
examples:
- your-company
type: string
image: image:
default: default:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
@@ -74,6 +59,21 @@ options:
default: 1.10.1 default: 1.10.1
type: string type: string
type: object type: object
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
domain:
default: your-company
examples:
- your-company
type: string
sub-domain:
default: dns
examples:
- dns
type: string
dependencies: [] dependencies: []
providers: providers:
kubernetes: true kubernetes: true