-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add EIM resources/data_sources and tests
- Loading branch information
1 parent
75b2c02
commit 2a24bb4
Showing
48 changed files
with
3,422 additions
and
149 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
outscale/data_source_managed_policies_linked_to_user_group_test.go
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,61 @@ | ||
package outscale | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
func TestAccOthers_policiesLinkedToGroup_basic(t *testing.T) { | ||
t.Parallel() | ||
resourceName := "data.outscale_managed_policies_linked_to_user_group.dataPoliciesLinkedToGroup" | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccDataPoliciesLinkedGroupConfig, | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttrSet(resourceName, "policies.#"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
const testAccDataPoliciesLinkedGroupConfig = ` | ||
resource "outscale_user_group" "groupPolicies01" { | ||
user_group_name = "userGroupName" | ||
path = "/GroupPolicies/" | ||
policy { | ||
policy_orn = outscale_policy.GpolicyLinked_01.orn | ||
} | ||
policy { | ||
policy_orn = outscale_policy.GpolicyLinked_02.orn | ||
} | ||
} | ||
resource "outscale_policy" "GpolicyLinked_01" { | ||
description = "Example Linked to group" | ||
document = "{\"Statement\": [ {\"Effect\": \"Allow\", \"Action\": [\"*\"], \"Resource\": [\"*\"]} ]}" | ||
path = "/Allow_test/" | ||
policy_name = "policiesLinkedToGroup" | ||
} | ||
resource "outscale_policy" "GpolicyLinked_02" { | ||
description = "Example Linked policy to group" | ||
document = "{\"Statement\": [ {\"Effect\": \"Deny\", \"Action\": [\"*\"], \"Resource\": [\"*\"]} ]}" | ||
path = "/OkhtTest/" | ||
policy_name = "policyGroupStopAll" | ||
} | ||
data "outscale_managed_policies_linked_to_user_group" "dataPoliciesLinkedToGroup" { | ||
filter { | ||
name = "path_prefix" | ||
values = [outscale_user_group.groupPolicies01.path] | ||
} | ||
filter { | ||
name = "user_group_ids" | ||
values = [outscale_user_group.groupPolicies01.user_group_id] | ||
} | ||
user_group_name = outscale_user_group.groupPolicies01.user_group_name | ||
}` |
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
164 changes: 164 additions & 0 deletions
164
outscale/data_source_outscale_entities_linked_to_policy.go
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,164 @@ | ||
package outscale | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"time" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
oscgo "github.com/outscale/osc-sdk-go/v2" | ||
"github.com/outscale/terraform-provider-outscale/utils" | ||
) | ||
|
||
func DataSourceEntitiesLinkedToPolicy() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: DataSourceEntitiesLinkedToPoliciesRead, | ||
Schema: map[string]*schema.Schema{ | ||
"policy_orn": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
}, | ||
"entities_type": { | ||
Type: schema.TypeSet, | ||
Optional: true, | ||
Elem: &schema.Schema{ | ||
Type: schema.TypeString, | ||
}, | ||
}, | ||
"policy_entities": { | ||
Type: schema.TypeSet, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"users": { | ||
Type: schema.TypeSet, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"id": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"orn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"groups": { | ||
Type: schema.TypeSet, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"id": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"orn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"accounts": { | ||
Type: schema.TypeSet, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"id": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"orn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func DataSourceEntitiesLinkedToPoliciesRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*OutscaleClient).OSCAPI | ||
orn := d.Get("policy_orn").(string) | ||
req := oscgo.ReadEntitiesLinkedToPolicyRequest{PolicyOrn: &orn} | ||
if entities := utils.SetToStringSlice(d.Get("entities_type").(*schema.Set)); len(entities) > 0 { | ||
req.SetEntitiesType(entities) | ||
} | ||
|
||
var resp oscgo.ReadEntitiesLinkedToPolicyResponse | ||
err := resource.Retry(2*time.Minute, func() *resource.RetryError { | ||
rp, httpResp, err := conn.PolicyApi.ReadEntitiesLinkedToPolicy(context.Background()).ReadEntitiesLinkedToPolicyRequest(req).Execute() | ||
if err != nil { | ||
return utils.CheckThrottling(httpResp, err) | ||
} | ||
resp = rp | ||
return nil | ||
}) | ||
|
||
if err != nil { | ||
return err | ||
} | ||
entities, ok := resp.GetPolicyEntitiesOk() | ||
if !ok { | ||
return fmt.Errorf("unable to find Entities linked to policy") | ||
} | ||
d.SetId(resource.UniqueId()) | ||
|
||
users := make([]map[string]interface{}, len(entities.GetUsers())) | ||
groups := make([]map[string]interface{}, len(entities.GetGroups())) | ||
accounts := make([]map[string]interface{}, len(entities.GetAccounts())) | ||
if respUsers, ok := entities.GetUsersOk(); ok { | ||
for i, v := range *respUsers { | ||
user := make(map[string]interface{}) | ||
user["id"] = v.GetId() | ||
user["name"] = v.GetName() | ||
user["orn"] = v.GetOrn() | ||
users[i] = user | ||
} | ||
} | ||
if respGroups, ok := entities.GetGroupsOk(); ok { | ||
for i, v := range *respGroups { | ||
group := make(map[string]interface{}) | ||
group["name"] = v.GetName() | ||
group["id"] = v.GetId() | ||
group["orn"] = v.GetOrn() | ||
groups[i] = group | ||
} | ||
} | ||
if respAccounts, ok := entities.GetAccountsOk(); ok { | ||
for i, v := range *respAccounts { | ||
account := make(map[string]interface{}) | ||
account["name"] = v.GetName() | ||
account["id"] = v.GetId() | ||
account["orn"] = v.GetOrn() | ||
accounts[i] = account | ||
} | ||
} | ||
|
||
return d.Set("policy_entities", []map[string]interface{}{{ | ||
"users": users, | ||
"groups": groups, | ||
"accounts": accounts, | ||
}}) | ||
} |
Oops, something went wrong.