Compare commits

...

2 Commits

Author SHA1 Message Date
1e1677cb4d
Add terraform format precommit
Format terraform files
2023-04-04 16:54:01 -04:00
29bccbac02
Add img service cname 2023-04-04 16:47:22 -04:00
3 changed files with 66 additions and 50 deletions

View File

@ -32,3 +32,11 @@ repos:
- "--wrap=90" - "--wrap=90"
types: types:
- markdown - markdown
- id: terraform
name: terraform format
entry: terraform
language: system
args:
- fmt
files: ".*\\.tf$"

View File

@ -80,6 +80,14 @@ resource "digitalocean_record" "enp_sso" {
ttl = 10600 ttl = 10600
} }
resource "digitalocean_record" "enp_img" {
domain = digitalocean_domain.enp.id
type = "CNAME"
name = "img"
value = "en1.enp.one."
ttl = 10600
}
# ========================================================================== # ==========================================================================
# Standard DO configuration for all managed domains, includes # Standard DO configuration for all managed domains, includes