Skip to content

Commit c6bc1cc

Browse files
committed
doc refactoring
1 parent db2d397 commit c6bc1cc

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

examples/access_control/main.tf renamed to examples/accounts_users/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "codefresh_access_control" {
2-
source = "../../tf_modules/access_control"
2+
source = "../../tf_modules/accounts_users"
33
api_url = var.api_url
44
default_idps = var.default_idps
55
accounts = var.accounts

examples/access_control/terraform.tfvars renamed to examples/accounts_users/terraform.tfvars

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
api_url = "https://onprem-tst-1.cf-cd.com/api"
1+
api_url = "https://my-codefresh.example.com/api"
2+
token = "cfAdmin-token"
23

34
default_idps = {
45
local = {
56
display_name = "local"
67
sso = false
78
}
89
azure_sso = {
9-
display_name = "codefresh-azure-sso-1"
10+
display_name = "azure-sso-1"
1011
sso = true
1112
}
1213
}
@@ -23,17 +24,17 @@ accounts = {
2324

2425
users = {
2526
user1 = {
26-
27+
2728
personal = {
28-
first_name = "Kosta"
29-
last_name = "A"
29+
first_name = "John"
30+
last_name = "Smith"
3031
}
3132
accounts = ["acc1", "acc2"]
3233
admin_of_accounts = ["acc1"]
3334
global_admin = true
3435
}
3536
user2 = {
36-
email = "live.com#kosta777@gmail.com"
37+
email = "live.com#user2@gmail.com"
3738
personal = {
3839
first_name = "Q"
3940
last_name = "D"
@@ -43,10 +44,10 @@ users = {
4344
global_admin = false
4445
}
4546
user3 = {
46-
47+
4748
personal = {
48-
first_name = "Kosta"
49-
last_name = "sysadmiral-io"
49+
first_name = "Sam"
50+
last_name = "Johnson"
5051
}
5152
accounts = ["acc1", "acc2"]
5253
admin_of_accounts = ["acc1", "acc2"]
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)