Skip to content

Commit 081d560

Browse files
committed
Use reusable idp package.
1 parent de02dd7 commit 081d560

File tree

3 files changed

+34
-554
lines changed

3 files changed

+34
-554
lines changed

codefresh/resource_account_idp.go

+2-12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88

99
"github.com/codefresh-io/terraform-provider-codefresh/codefresh/cfclient"
1010
"github.com/codefresh-io/terraform-provider-codefresh/codefresh/internal/datautil"
11+
"github.com/codefresh-io/terraform-provider-codefresh/codefresh/internal/idp"
1112
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
1213
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1314
)
@@ -51,16 +52,14 @@ func resourceAccountIdp() *schema.Resource {
5152
}),
5253
),
5354
// Defined in resource_idp, as schema is the same for global and account scoped IDPs
54-
Schema: idpSchema,
55+
Schema: idp.IdpSchema,
5556
}
5657
}
5758

5859
func resourceAccountIDPCreate(d *schema.ResourceData, meta interface{}) error {
59-
6060
client := meta.(*cfclient.Client)
6161

6262
id, err := client.CreateIDP(mapResourceToAccountIDP(d), false)
63-
6463
if err != nil {
6564
log.Printf("[DEBUG] Error while creating idp. Error = %v", err)
6665
return err
@@ -71,15 +70,13 @@ func resourceAccountIDPCreate(d *schema.ResourceData, meta interface{}) error {
7170
}
7271

7372
func resourceAccountIDPRead(d *schema.ResourceData, meta interface{}) error {
74-
7573
client := meta.(*cfclient.Client)
7674
idpID := d.Id()
7775

7876
var cfClientIDP *cfclient.IDP
7977
var err error
8078

8179
cfClientIDP, err = client.GetAccountIdpByID(idpID)
82-
8380
if err != nil {
8481
if err.Error() == fmt.Sprintf("[ERROR] IDP with ID %s isn't found.", d.Id()) {
8582
d.SetId("")
@@ -91,7 +88,6 @@ func resourceAccountIDPRead(d *schema.ResourceData, meta interface{}) error {
9188
}
9289

9390
err = mapAccountIDPToResource(*cfClientIDP, d)
94-
9591
if err != nil {
9692
log.Printf("[DEBUG] Error while getting mapping response to IDP object. Error = %v", err)
9793
return err
@@ -104,7 +100,6 @@ func resourceAccountIDPDelete(d *schema.ResourceData, meta interface{}) error {
104100
client := meta.(*cfclient.Client)
105101

106102
err := client.DeleteIDPAccount(d.Id())
107-
108103
if err != nil {
109104
log.Printf("[DEBUG] Error while deleting account level IDP. Error = %v", err)
110105
return err
@@ -114,11 +109,9 @@ func resourceAccountIDPDelete(d *schema.ResourceData, meta interface{}) error {
114109
}
115110

116111
func resourceAccountIDPUpdate(d *schema.ResourceData, meta interface{}) error {
117-
118112
client := meta.(*cfclient.Client)
119113

120114
err := client.UpdateIDP(mapResourceToAccountIDP(d), false)
121-
122115
if err != nil {
123116
log.Printf("[DEBUG] Error while updating idp. Error = %v", err)
124117
return err
@@ -204,7 +197,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
204197
if cfClientIDP.ClientType == "azure" {
205198

206199
syncInterval, err := strconv.Atoi(cfClientIDP.SyncInterval)
207-
208200
if err != nil {
209201
return err
210202
}
@@ -250,7 +242,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
250242

251243
if cfClientIDP.ClientType == "saml" {
252244
syncInterval, err := strconv.Atoi(cfClientIDP.SyncInterval)
253-
254245
if err != nil {
255246
return err
256247
}
@@ -291,7 +282,6 @@ func mapAccountIDPToResource(cfClientIDP cfclient.IDP, d *schema.ResourceData) e
291282
}
292283

293284
func mapResourceToAccountIDP(d *schema.ResourceData) *cfclient.IDP {
294-
295285
cfClientIDP := &cfclient.IDP{
296286
ID: d.Id(),
297287
DisplayName: d.Get("display_name").(string),

0 commit comments

Comments
 (0)