Skip to content

Commit 149aa8e

Browse files
author
Michael Leer
committed
chore: fmt terraform files
1 parent 41295e8 commit 149aa8e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

examples/complete/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "pocketid_client" "spa_app" {
6666
]
6767
is_public = true
6868
pkce_enabled = true
69-
launch_url = "https://spa.example.com/launch"
69+
launch_url = "https://spa.example.com/launch"
7070
}
7171

7272
# Confidential web application
@@ -80,10 +80,10 @@ resource "pocketid_client" "web_app" {
8080
logout_callback_urls = [
8181
"https://app.example.com/logout"
8282
]
83-
is_public = false
84-
pkce_enabled = true
83+
is_public = false
84+
pkce_enabled = true
8585
requires_reauthentication = true
86-
launch_url = "https://app.example.com/launch"
86+
launch_url = "https://app.example.com/launch"
8787
}
8888

8989
# Mobile application client

examples/resources/client.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ resource "pocketid_client" "advanced_app" {
5656
# Security settings
5757
require_auth_time = true
5858
require_pushed_authorization_requests = false
59-
requires_reauthentication = true
59+
requires_reauthentication = true
6060

6161
# CORS origins for SPAs
6262
allowed_cors_origins = [

examples/user-management/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ resource "pocketid_user" "custom_display_name" {
7676
7777
first_name = "John"
7878
last_name = "Smith"
79-
display_name = "JS" # Custom display name instead of "John Smith"
79+
display_name = "JS" # Custom display name instead of "John Smith"
8080
groups = [pocketid_group.developers.id]
8181
}
8282

0 commit comments

Comments
 (0)