-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'remove-common-configs' into 'master'
removed common_configs & redundant code moved to resource_base See merge request cidaas-management/terraform!119
- Loading branch information
Showing
37 changed files
with
3,378 additions
and
4,909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
common_configs = { | ||
client_type = "SINGLE_PAGE" | ||
company_address = "Maybachstraße 2, 71299 Wimsheim, Germany" | ||
company_name = "WidasConcepts GmbH" | ||
company_website = "https://widas.com" | ||
redirect_uris = [ | ||
"https://cidaas.de/home", | ||
] | ||
allowed_logout_urls = [ | ||
"https://cidaas.de/logout" | ||
] | ||
allowed_scopes = [ | ||
"openid", | ||
] | ||
accent_color = "#FFFFFF" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
provider "cidaas" { | ||
base_url = "https://cidaas.dev.de" | ||
} | ||
|
||
module "app1" { | ||
source = "[email protected]:Cidaas/terraform-cidaas-app.git" | ||
|
||
providers = { | ||
cidaas = cidaas | ||
} | ||
|
||
client_name = "Demo SP App" | ||
common_configs = var.common_configs | ||
} | ||
|
||
module "app2" { | ||
source = "[email protected]:Cidaas/terraform-cidaas-app.git" | ||
|
||
providers = { | ||
cidaas = cidaas | ||
} | ||
|
||
client_name = "Test ISO App" | ||
client_type = "IOS" | ||
common_configs = var.common_configs | ||
} |
Oops, something went wrong.