forked from GoogleCloudPlatform/terraform-google-conversion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for data source google_iam_role (GoogleCloudPlatform#142)
<!-- This change is generated by MagicModules. --> /cc @rileykarson
- Loading branch information
1 parent
f8edd63
commit b0103a8
Showing
5 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
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,48 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hashicorp/terraform/helper/schema" | ||
) | ||
|
||
func dataSourceGoogleIamRole() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: dataSourceGoogleIamRoleRead, | ||
Schema: map[string]*schema.Schema{ | ||
"name": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
}, | ||
"title": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"included_permissions": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
"stage": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func dataSourceGoogleIamRoleRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
roleName := d.Get("name").(string) | ||
role, err := config.clientIAM.Roles.Get(roleName).Do() | ||
if err != nil { | ||
return handleNotFoundError(err, d, fmt.Sprintf("Error reading IAM Role %s: %s", roleName, err)) | ||
} | ||
|
||
d.SetId(role.Name) | ||
d.Set("title", role.Title) | ||
d.Set("stage", role.Stage) | ||
d.Set("included_permissions", role.IncludedPermissions) | ||
|
||
return nil | ||
} |
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,51 @@ | ||
package google | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/terraform" | ||
) | ||
|
||
func TestAccDataSourceIAMRole(t *testing.T) { | ||
name := "roles/viewer" | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccCheckGoogleIamRoleConfig(name), | ||
Check: resource.ComposeTestCheckFunc( | ||
testAccCheckGoogleIAMRoleCheck("data.google_iam_role.role"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccCheckGoogleIAMRoleCheck(n string) resource.TestCheckFunc { | ||
return func(s *terraform.State) error { | ||
ds, ok := s.RootModule().Resources[n] | ||
if !ok { | ||
return fmt.Errorf("Can't find iam role data source: %s", n) | ||
} | ||
|
||
_, ok = ds.Primary.Attributes["included_permissions.#"] | ||
if !ok { | ||
return errors.New("can't find 'included_permissions' attribute") | ||
} | ||
|
||
return nil | ||
} | ||
} | ||
|
||
func testAccCheckGoogleIamRoleConfig(name string) string { | ||
return fmt.Sprintf(` | ||
data "google_iam_role" "role" { | ||
name = "%s" | ||
} | ||
`, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
layout: "google" | ||
page_title: "Google: google_iam_role" | ||
sidebar_current: "docs-google-datasource-iam-role" | ||
description: |- | ||
Get information about a Google IAM Role. | ||
--- | ||
|
||
# google\_iam\_role | ||
|
||
Use this data source to get information about a Google IAM Role. | ||
|
||
```hcl | ||
data "google_iam_role" "roleinfo" { | ||
name = "roles/compute.viewer" | ||
} | ||
output "the_role_permissions" { | ||
value = "${data.google_iam_role.roleinfo.included_permissions}" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `name` (Required) - The name of the Role to lookup in the form `roles/{ROLE_NAME}`, `organizations/{ORGANIZATION_ID}/roles/{ROLE_NAME}` or `projects/{PROJECT_ID}/roles/{ROLE_NAME}` | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `title` - is a friendly title for the role, such as "Role Viewer" | ||
* `included_permissions` - specifies the list of one or more permissions to include in the custom role, such as - `iam.roles.get` | ||
* `stage` - indicates the stage of a role in the launch lifecycle, such as `GA`, `BETA` or `ALPHA`. |
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