8
8
9
9
"github.com/codefresh-io/terraform-provider-codefresh/codefresh/cfclient"
10
10
"github.com/codefresh-io/terraform-provider-codefresh/codefresh/internal/datautil"
11
+ "github.com/codefresh-io/terraform-provider-codefresh/codefresh/internal/idp"
11
12
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
12
13
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
13
14
)
@@ -51,16 +52,14 @@ func resourceAccountIdp() *schema.Resource {
51
52
}),
52
53
),
53
54
// Defined in resource_idp, as schema is the same for global and account scoped IDPs
54
- Schema : idpSchema ,
55
+ Schema : idp . IdpSchema ,
55
56
}
56
57
}
57
58
58
59
func resourceAccountIDPCreate (d * schema.ResourceData , meta interface {}) error {
59
-
60
60
client := meta .(* cfclient.Client )
61
61
62
62
id , err := client .CreateIDP (mapResourceToAccountIDP (d ), false )
63
-
64
63
if err != nil {
65
64
log .Printf ("[DEBUG] Error while creating idp. Error = %v" , err )
66
65
return err
@@ -71,15 +70,13 @@ func resourceAccountIDPCreate(d *schema.ResourceData, meta interface{}) error {
71
70
}
72
71
73
72
func resourceAccountIDPRead (d * schema.ResourceData , meta interface {}) error {
74
-
75
73
client := meta .(* cfclient.Client )
76
74
idpID := d .Id ()
77
75
78
76
var cfClientIDP * cfclient.IDP
79
77
var err error
80
78
81
79
cfClientIDP , err = client .GetAccountIdpByID (idpID )
82
-
83
80
if err != nil {
84
81
if err .Error () == fmt .Sprintf ("[ERROR] IDP with ID %s isn't found." , d .Id ()) {
85
82
d .SetId ("" )
@@ -91,7 +88,6 @@ func resourceAccountIDPRead(d *schema.ResourceData, meta interface{}) error {
91
88
}
92
89
93
90
err = mapAccountIDPToResource (* cfClientIDP , d )
94
-
95
91
if err != nil {
96
92
log .Printf ("[DEBUG] Error while getting mapping response to IDP object. Error = %v" , err )
97
93
return err
@@ -104,7 +100,6 @@ func resourceAccountIDPDelete(d *schema.ResourceData, meta interface{}) error {
104
100
client := meta .(* cfclient.Client )
105
101
106
102
err := client .DeleteIDPAccount (d .Id ())
107
-
108
103
if err != nil {
109
104
log .Printf ("[DEBUG] Error while deleting account level IDP. Error = %v" , err )
110
105
return err
@@ -114,11 +109,9 @@ func resourceAccountIDPDelete(d *schema.ResourceData, meta interface{}) error {
114
109
}
115
110
116
111
func resourceAccountIDPUpdate (d * schema.ResourceData , meta interface {}) error {
117
-
118
112
client := meta .(* cfclient.Client )
119
113
120
114
err := client .UpdateIDP (mapResourceToAccountIDP (d ), false )
121
-
122
115
if err != nil {
123
116
log .Printf ("[DEBUG] Error while updating idp. Error = %v" , err )
124
117
return err
@@ -136,7 +129,7 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
136
129
d .Set ("login_url" , cfClientIDP .LoginUrl )
137
130
d .Set ("client_type" , cfClientIDP .ClientType )
138
131
139
- if cfClientIDP .ClientType == "github" {
132
+ if cfClientIDP .ClientType == idp . GitHub {
140
133
attributes := []map [string ]interface {}{{
141
134
"client_id" : cfClientIDP .ClientId ,
142
135
// Codefresh API Returns the client secret as an encrypted string on the server side
@@ -150,10 +143,10 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
150
143
"api_path_prefix" : cfClientIDP .ApiPathPrefix ,
151
144
}}
152
145
153
- d .Set ("github" , attributes )
146
+ d .Set (idp . GitHub , attributes )
154
147
}
155
148
156
- if cfClientIDP .ClientType == "gitlab" {
149
+ if cfClientIDP .ClientType == idp . GitLab {
157
150
attributes := []map [string ]interface {}{{
158
151
"client_id" : cfClientIDP .ClientId ,
159
152
"client_secret" : d .Get ("gitlab.0.client_secret" ),
@@ -162,10 +155,10 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
162
155
"api_url" : cfClientIDP .ApiURL ,
163
156
}}
164
157
165
- d .Set ("gitlab" , attributes )
158
+ d .Set (idp . GitLab , attributes )
166
159
}
167
160
168
- if cfClientIDP .ClientType == "okta" {
161
+ if cfClientIDP .ClientType == idp . Okta {
169
162
attributes := []map [string ]interface {}{{
170
163
"client_id" : cfClientIDP .ClientId ,
171
164
"client_secret" : d .Get ("okta.0.client_secret" ),
@@ -178,7 +171,7 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
178
171
d .Set ("okta" , attributes )
179
172
}
180
173
181
- if cfClientIDP .ClientType == "google" {
174
+ if cfClientIDP .ClientType == idp . Google {
182
175
attributes := []map [string ]interface {}{{
183
176
"client_id" : cfClientIDP .ClientId ,
184
177
"client_secret" : d .Get ("google.0.client_secret" ),
@@ -188,23 +181,22 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
188
181
"sync_field" : cfClientIDP .SyncField ,
189
182
}}
190
183
191
- d .Set ("google" , attributes )
184
+ d .Set (idp . Google , attributes )
192
185
}
193
186
194
- if cfClientIDP .ClientType == "auth0" {
187
+ if cfClientIDP .ClientType == idp . Auth0 {
195
188
attributes := []map [string ]interface {}{{
196
189
"client_id" : cfClientIDP .ClientId ,
197
190
"client_secret" : d .Get ("auth0.0.client_secret" ),
198
191
"domain" : cfClientIDP .ClientHost ,
199
192
}}
200
193
201
- d .Set ("auth0" , attributes )
194
+ d .Set (idp . Auth0 , attributes )
202
195
}
203
196
204
- if cfClientIDP .ClientType == "azure" {
197
+ if cfClientIDP .ClientType == idp . Azure {
205
198
206
199
syncInterval , err := strconv .Atoi (cfClientIDP .SyncInterval )
207
-
208
200
if err != nil {
209
201
return err
210
202
}
@@ -218,10 +210,10 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
218
210
"tenant" : cfClientIDP .Tenant ,
219
211
}}
220
212
221
- d .Set ("azure" , attributes )
213
+ d .Set (idp . Azure , attributes )
222
214
}
223
215
224
- if cfClientIDP .ClientType == "onelogin" {
216
+ if cfClientIDP .ClientType == idp . OneLogin {
225
217
attributes := []map [string ]interface {}{{
226
218
"client_id" : cfClientIDP .ClientId ,
227
219
"client_secret" : d .Get ("onelogin.0.client_secret" ),
@@ -234,23 +226,22 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
234
226
"app_id" : cfClientIDP .AppId ,
235
227
}}
236
228
237
- d .Set ("onelogin" , attributes )
229
+ d .Set (idp . OneLogin , attributes )
238
230
}
239
231
240
- if cfClientIDP .ClientType == "keycloak" {
232
+ if cfClientIDP .ClientType == idp . Keycloak {
241
233
attributes := []map [string ]interface {}{{
242
234
"client_id" : cfClientIDP .ClientId ,
243
235
"client_secret" : d .Get ("keycloak.0.client_secret" ),
244
236
"host" : cfClientIDP .Host ,
245
237
"realm" : cfClientIDP .Realm ,
246
238
}}
247
239
248
- d .Set ("keycloak" , attributes )
240
+ d .Set (idp . Keycloak , attributes )
249
241
}
250
242
251
- if cfClientIDP .ClientType == "saml" {
243
+ if cfClientIDP .ClientType == idp . SAML {
252
244
syncInterval , err := strconv .Atoi (cfClientIDP .SyncInterval )
253
-
254
245
if err != nil {
255
246
return err
256
247
}
@@ -269,10 +260,10 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
269
260
"access_token" : d .Get ("saml.0.access_token" ),
270
261
}}
271
262
272
- d .Set ("saml" , attributes )
263
+ d .Set (idp . SAML , attributes )
273
264
}
274
265
275
- if cfClientIDP .ClientType == "ldap" {
266
+ if cfClientIDP .ClientType == idp . LDAP {
276
267
attributes := []map [string ]interface {}{{
277
268
"url" : cfClientIDP .Url ,
278
269
"password" : d .Get ("ldap.0.password" ),
@@ -284,14 +275,13 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
284
275
"search_base_for_sync" : cfClientIDP .SearchBaseForSync ,
285
276
}}
286
277
287
- d .Set ("ldap" , attributes )
278
+ d .Set (idp . LDAP , attributes )
288
279
}
289
280
290
281
return nil
291
282
}
292
283
293
284
func mapResourceToAccountIDP (d * schema.ResourceData ) * cfclient.IDP {
294
-
295
285
cfClientIDP := & cfclient.IDP {
296
286
ID : d .Id (),
297
287
DisplayName : d .Get ("display_name" ).(string ),
@@ -301,8 +291,8 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
301
291
LoginUrl : d .Get ("login_url" ).(string ),
302
292
}
303
293
304
- if _ , ok := d .GetOk ("github" ); ok {
305
- cfClientIDP .ClientType = "github"
294
+ if _ , ok := d .GetOk (idp . GitHub ); ok {
295
+ cfClientIDP .ClientType = idp . GitHub
306
296
cfClientIDP .ClientId = d .Get ("github.0.client_id" ).(string )
307
297
cfClientIDP .ClientSecret = d .Get ("github.0.client_secret" ).(string )
308
298
cfClientIDP .AuthURL = d .Get ("github.0.authentication_url" ).(string )
@@ -312,17 +302,17 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
312
302
cfClientIDP .ApiPathPrefix = d .Get ("github.0.api_path_prefix" ).(string )
313
303
}
314
304
315
- if _ , ok := d .GetOk ("gitlab" ); ok {
316
- cfClientIDP .ClientType = "gitlab"
305
+ if _ , ok := d .GetOk (idp . GitLab ); ok {
306
+ cfClientIDP .ClientType = idp . GitLab
317
307
cfClientIDP .ClientId = d .Get ("gitlab.0.client_id" ).(string )
318
308
cfClientIDP .ClientSecret = d .Get ("gitlab.0.client_secret" ).(string )
319
309
cfClientIDP .AuthURL = d .Get ("gitlab.0.authentication_url" ).(string )
320
310
cfClientIDP .UserProfileURL = d .Get ("gitlab.0.user_profile_url" ).(string )
321
311
cfClientIDP .ApiURL = d .Get ("gitlab.0.api_url" ).(string )
322
312
}
323
313
324
- if _ , ok := d .GetOk ("okta" ); ok {
325
- cfClientIDP .ClientType = "okta"
314
+ if _ , ok := d .GetOk (idp . Okta ); ok {
315
+ cfClientIDP .ClientType = idp . Okta
326
316
cfClientIDP .ClientId = d .Get ("okta.0.client_id" ).(string )
327
317
cfClientIDP .ClientSecret = d .Get ("okta.0.client_secret" ).(string )
328
318
cfClientIDP .ClientHost = d .Get ("okta.0.client_host" ).(string )
@@ -331,8 +321,8 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
331
321
cfClientIDP .Access_token = d .Get ("okta.0.access_token" ).(string )
332
322
}
333
323
334
- if _ , ok := d .GetOk ("google" ); ok {
335
- cfClientIDP .ClientType = "google"
324
+ if _ , ok := d .GetOk (idp . Google ); ok {
325
+ cfClientIDP .ClientType = idp . Google
336
326
cfClientIDP .ClientId = d .Get ("google.0.client_id" ).(string )
337
327
cfClientIDP .ClientSecret = d .Get ("google.0.client_secret" ).(string )
338
328
cfClientIDP .KeyFile = d .Get ("google.0.json_keyfile" ).(string )
@@ -341,15 +331,15 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
341
331
cfClientIDP .SyncField = d .Get ("google.0.sync_field" ).(string )
342
332
}
343
333
344
- if _ , ok := d .GetOk ("auth0" ); ok {
345
- cfClientIDP .ClientType = "auth0"
334
+ if _ , ok := d .GetOk (idp . Auth0 ); ok {
335
+ cfClientIDP .ClientType = idp . Auth0
346
336
cfClientIDP .ClientId = d .Get ("auth0.0.client_id" ).(string )
347
337
cfClientIDP .ClientSecret = d .Get ("auth0.0.client_secret" ).(string )
348
338
cfClientIDP .ClientHost = d .Get ("auth0.0.domain" ).(string )
349
339
}
350
340
351
- if _ , ok := d .GetOk ("azure" ); ok {
352
- cfClientIDP .ClientType = "azure"
341
+ if _ , ok := d .GetOk (idp . Azure ); ok {
342
+ cfClientIDP .ClientType = idp . Azure
353
343
cfClientIDP .ClientId = d .Get ("azure.0.app_id" ).(string )
354
344
cfClientIDP .ClientSecret = d .Get ("azure.0.client_secret" ).(string )
355
345
cfClientIDP .AppId = d .Get ("azure.0.object_id" ).(string )
@@ -358,8 +348,8 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
358
348
cfClientIDP .SyncInterval = strconv .Itoa (d .Get ("azure.0.sync_interval" ).(int ))
359
349
}
360
350
361
- if _ , ok := d .GetOk ("onelogin" ); ok {
362
- cfClientIDP .ClientType = "onelogin"
351
+ if _ , ok := d .GetOk (idp . OneLogin ); ok {
352
+ cfClientIDP .ClientType = idp . OneLogin
363
353
cfClientIDP .ClientId = d .Get ("onelogin.0.client_id" ).(string )
364
354
cfClientIDP .ClientSecret = d .Get ("onelogin.0.client_secret" ).(string )
365
355
cfClientIDP .ClientHost = d .Get ("onelogin.0.domain" ).(string )
@@ -368,16 +358,16 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
368
358
cfClientIDP .ApiClientSecret = d .Get ("onelogin.0.api_client_secret" ).(string )
369
359
}
370
360
371
- if _ , ok := d .GetOk ("keycloak" ); ok {
372
- cfClientIDP .ClientType = "keycloak"
361
+ if _ , ok := d .GetOk (idp . Keycloak ); ok {
362
+ cfClientIDP .ClientType = idp . Keycloak
373
363
cfClientIDP .ClientId = d .Get ("keycloak.0.client_id" ).(string )
374
364
cfClientIDP .ClientSecret = d .Get ("keycloak.0.client_secret" ).(string )
375
365
cfClientIDP .Host = d .Get ("keycloak.0.host" ).(string )
376
366
cfClientIDP .Realm = d .Get ("keycloak.0.realm" ).(string )
377
367
}
378
368
379
- if _ , ok := d .GetOk ("saml" ); ok {
380
- cfClientIDP .ClientType = "saml"
369
+ if _ , ok := d .GetOk (idp . SAML ); ok {
370
+ cfClientIDP .ClientType = idp . SAML
381
371
cfClientIDP .SamlProvider = d .Get ("saml.0.provider" ).(string )
382
372
cfClientIDP .EntryPoint = d .Get ("saml.0.endpoint" ).(string )
383
373
cfClientIDP .ApplicationCert = d .Get ("saml.0.application_certificate" ).(string )
@@ -392,8 +382,8 @@ func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
392
382
cfClientIDP .Access_token = d .Get ("saml.0.access_token" ).(string )
393
383
}
394
384
395
- if _ , ok := d .GetOk ("ldap" ); ok {
396
- cfClientIDP .ClientType = "ldap"
385
+ if _ , ok := d .GetOk (idp . LDAP ); ok {
386
+ cfClientIDP .ClientType = idp . LDAP
397
387
cfClientIDP .Url = d .Get ("ldap.0.url" ).(string )
398
388
cfClientIDP .Password = d .Get ("ldap.0.password" ).(string )
399
389
cfClientIDP .DistinguishedName = d .Get ("ldap.0.distinguished_name" ).(string )
0 commit comments