generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add iframe parameter to security settings (#907)
- Loading branch information
1 parent
72e0719
commit fa69c8d
Showing
42 changed files
with
4,236 additions
and
756 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
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 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 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
3 changes: 3 additions & 0 deletions
3
examples/resources/btp_globalaccount_security_settings/import.sh
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,3 @@ | ||
# terraform import btp_globalaccount_security_settings.<resource_name> '<globalaccount_subdomain>' | ||
|
||
terraform import btp_globalaccount_security_settings.sec_setting '6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f' |
10 changes: 6 additions & 4 deletions
10
examples/resources/btp_globalaccount_security_settings/resource.tf
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
resource "btp_globalaccount_security_settings" "this" { | ||
default_identity_provider = "sap.custom" | ||
default_identity_provider = "sap.custom" | ||
|
||
access_token_validity = 3600 | ||
refresh_token_validity = 3600 | ||
access_token_validity = 3600 | ||
refresh_token_validity = 3600 | ||
|
||
treat_users_with_same_email_as_same_user = true | ||
|
||
custom_email_domains = ["yourdomain.test"] | ||
custom_email_domains = ["yourdomain.test"] | ||
|
||
iframe_domains = ["https://yourdomain.test"] | ||
} |
3 changes: 3 additions & 0 deletions
3
examples/resources/btp_subaccount_security_settings/import.sh
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,3 @@ | ||
# terraform import btp_subaccount_security_settings.<resource_name> '<subaccount_id>' | ||
|
||
terraform import btp_subaccount_security_settings.sec_setting '6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f' |
14 changes: 8 additions & 6 deletions
14
examples/resources/btp_subaccount_security_settings/resource.tf
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
resource "btp_subaccount_security_settings" "subaccount" { | ||
subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" | ||
resource "btp_subaccount_security_settings" "sec_setting" { | ||
subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" | ||
|
||
default_identity_provider = "sap.custom" | ||
default_identity_provider = "sap.custom" | ||
|
||
access_token_validity = 3600 | ||
refresh_token_validity = 3600 | ||
access_token_validity = 3600 | ||
refresh_token_validity = 3600 | ||
|
||
treat_users_with_same_email_as_same_user = true | ||
|
||
custom_email_domains = ["yourdomain.test"] | ||
custom_email_domains = ["yourdomain.test"] | ||
|
||
iframe_domains = "https://yourdomain.test" | ||
} |
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 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 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 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 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
Oops, something went wrong.