aboutsummaryrefslogtreecommitdiff
path: root/tardis-new/asdf.tf
diff options
context:
space:
mode:
authorAria <me@aria.rip>2023-12-12 02:03:58 +0000
committerAria <me@aria.rip>2023-12-12 02:03:58 +0000
commit35564ad41cfbda2b2a698061a2134956736744c9 (patch)
tree82093ecbeb1f1b9aac9ffa5594f339a22783f2f5 /tardis-new/asdf.tf
parentc19dc0924481c7edf4938f5aa105f481a787a30e (diff)
delete some old stuffHEADmain
Diffstat (limited to 'tardis-new/asdf.tf')
-rw-r--r--tardis-new/asdf.tf24
1 files changed, 0 insertions, 24 deletions
diff --git a/tardis-new/asdf.tf b/tardis-new/asdf.tf
deleted file mode 100644
index 40bad49..0000000
--- a/tardis-new/asdf.tf
+++ /dev/null
@@ -1,24 +0,0 @@
-terraform {
- required_providers {
- authentik = {
- source = "goauthentik/authentik"
- version = "2023.8.0"
- }
- }
-}
-
-provider "authentik" {
- url = "http://localhost:9000"
- token = "pzWOnE9J6OOyVLqFYzeiQRV0CV4zhN7dqcmzuA8Da3x9Xywch4tHp2DrfLSs"
-}
-
-resource "authentik_provider_oauth2" "name" {
- name = "grafana"
- client_id = "grafana"
- authorization_flow = "60ee931d-8266-4b40-8b3b-3f1f4ed77e17"
-}
-
-output "grafana_client_secret" {
- value = authentik_provider_oauth2.name.client_secret
- sensitive = true
-}