-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new resource google_folder_organization_policy (#747)
* Add new resource google_folder_organization_policy * Add documentation
- Loading branch information
Showing
6 changed files
with
629 additions
and
97 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
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,101 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
"google.golang.org/api/cloudresourcemanager/v1" | ||
) | ||
|
||
func resourceGoogleFolderOrganizationPolicy() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceGoogleFolderOrganizationPolicyCreate, | ||
Read: resourceGoogleFolderOrganizationPolicyRead, | ||
Update: resourceGoogleFolderOrganizationPolicyUpdate, | ||
Delete: resourceGoogleFolderOrganizationPolicyDelete, | ||
|
||
Schema: mergeSchemas( | ||
schemaOrganizationPolicy, | ||
map[string]*schema.Schema{ | ||
"folder": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
}, | ||
), | ||
} | ||
} | ||
|
||
func resourceGoogleFolderOrganizationPolicyCreate(d *schema.ResourceData, meta interface{}) error { | ||
if err := setFolderOrganizationPolicy(d, meta); err != nil { | ||
return err | ||
} | ||
|
||
d.SetId(fmt.Sprintf("%s:%s", d.Get("folder"), d.Get("constraint"))) | ||
|
||
return resourceGoogleFolderOrganizationPolicyRead(d, meta) | ||
} | ||
|
||
func resourceGoogleFolderOrganizationPolicyRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
folder := d.Get("folder").(string) | ||
|
||
policy, err := config.clientResourceManager.Folders.GetOrgPolicy(folder, &cloudresourcemanager.GetOrgPolicyRequest{ | ||
Constraint: canonicalOrgPolicyConstraint(d.Get("constraint").(string)), | ||
}).Do() | ||
|
||
if err != nil { | ||
return handleNotFoundError(err, d, fmt.Sprintf("Organization policy for %s", folder)) | ||
} | ||
|
||
d.Set("constraint", policy.Constraint) | ||
d.Set("boolean_policy", flattenBooleanOrganizationPolicy(policy.BooleanPolicy)) | ||
d.Set("list_policy", flattenListOrganizationPolicy(policy.ListPolicy)) | ||
d.Set("version", policy.Version) | ||
d.Set("etag", policy.Etag) | ||
d.Set("update_time", policy.UpdateTime) | ||
|
||
return nil | ||
} | ||
|
||
func resourceGoogleFolderOrganizationPolicyUpdate(d *schema.ResourceData, meta interface{}) error { | ||
if err := setFolderOrganizationPolicy(d, meta); err != nil { | ||
return err | ||
} | ||
|
||
return resourceGoogleFolderOrganizationPolicyRead(d, meta) | ||
} | ||
|
||
func resourceGoogleFolderOrganizationPolicyDelete(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
_, err := config.clientResourceManager.Folders.ClearOrgPolicy(d.Get("folder").(string), &cloudresourcemanager.ClearOrgPolicyRequest{ | ||
Constraint: canonicalOrgPolicyConstraint(d.Get("constraint").(string)), | ||
}).Do() | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func setFolderOrganizationPolicy(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
listPolicy, err := expandListOrganizationPolicy(d.Get("list_policy").([]interface{})) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = config.clientResourceManager.Folders.SetOrgPolicy(d.Get("folder").(string), &cloudresourcemanager.SetOrgPolicyRequest{ | ||
Policy: &cloudresourcemanager.OrgPolicy{ | ||
Constraint: canonicalOrgPolicyConstraint(d.Get("constraint").(string)), | ||
BooleanPolicy: expandBooleanOrganizationPolicy(d.Get("boolean_policy").([]interface{})), | ||
ListPolicy: listPolicy, | ||
Version: int64(d.Get("version").(int)), | ||
Etag: d.Get("etag").(string), | ||
}, | ||
}).Do() | ||
|
||
return err | ||
} |
Oops, something went wrong.