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
@@ -204,7 +197,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
204
197
if cfClientIDP .ClientType == "azure" {
205
198
206
199
syncInterval , err := strconv .Atoi (cfClientIDP .SyncInterval )
207
-
208
200
if err != nil {
209
201
return err
210
202
}
@@ -250,7 +242,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
250
242
251
243
if cfClientIDP .ClientType == "saml" {
252
244
syncInterval , err := strconv .Atoi (cfClientIDP .SyncInterval )
253
-
254
245
if err != nil {
255
246
return err
256
247
}
@@ -291,7 +282,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
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 ),
0 commit comments