-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for restoring default organization policies #1477
Changes from 4 commits
2ac78fc
b49b6ec
4722e12
deeaac5
0ee0f59
11d5f19
00e2b6c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ var schemaOrganizationPolicy = map[string]*schema.Schema{ | |
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
ConflictsWith: []string{"list_policy"}, | ||
ConflictsWith: []string{"list_policy", "restore_policy"}, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"enforced": { | ||
|
@@ -32,7 +32,7 @@ var schemaOrganizationPolicy = map[string]*schema.Schema{ | |
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
ConflictsWith: []string{"boolean_policy"}, | ||
ConflictsWith: []string{"boolean_policy", "restore_policy"}, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"allow": { | ||
|
@@ -99,6 +99,20 @@ var schemaOrganizationPolicy = map[string]*schema.Schema{ | |
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"restore_policy": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
MaxItems: 1, | ||
ConflictsWith: []string{"boolean_policy", "list_policy"}, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"default": { | ||
Type: schema.TypeBool, | ||
Required: true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm a bit confused about the structure of this. The API requires an empty object, so There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only because in the requirements give me the next structure: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @morgante, this was your idea I believe. What do you think? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason I specified it that way was for equivalence with the other constraint types, which use a nested structure. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it makes sense. It's a little different in this case because the others are mirroring the API exactly as it is, whereas this one is adding a field into an object, even though that field doesn't exist. I do think it's probably less confusing than just requiring an empty object though, and a bit more future proof anyway, so sure. I'm down. |
||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
func resourceGoogleOrganizationPolicy() *schema.Resource { | ||
|
@@ -152,6 +166,7 @@ func resourceGoogleOrganizationPolicyRead(d *schema.ResourceData, meta interface | |
d.Set("version", policy.Version) | ||
d.Set("etag", policy.Etag) | ||
d.Set("update_time", policy.UpdateTime) | ||
d.Set("restore_policy", flattenRestoreOrganizationPolicy(policy.RestoreDefault)) | ||
|
||
return nil | ||
} | ||
|
@@ -200,13 +215,19 @@ func setOrganizationPolicy(d *schema.ResourceData, meta interface{}) error { | |
return err | ||
} | ||
|
||
restoreDefault, err := expandRestoreOrganizationPolicy(d.Get("restore_policy").([]interface{})) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = config.clientResourceManager.Organizations.SetOrgPolicy(org, &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), | ||
Constraint: canonicalOrgPolicyConstraint(d.Get("constraint").(string)), | ||
BooleanPolicy: expandBooleanOrganizationPolicy(d.Get("boolean_policy").([]interface{})), | ||
ListPolicy: listPolicy, | ||
RestoreDefault: restoreDefault, | ||
Version: int64(d.Get("version").(int)), | ||
Etag: d.Get("etag").(string), | ||
}, | ||
}).Do() | ||
|
||
|
@@ -227,6 +248,20 @@ func flattenBooleanOrganizationPolicy(policy *cloudresourcemanager.BooleanPolicy | |
return bPolicies | ||
} | ||
|
||
func flattenRestoreOrganizationPolicy(restore_policy *cloudresourcemanager.RestoreDefault) []map[string]interface{} { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: camelcase There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed |
||
rp := make([]map[string]interface{}, 0, 1) | ||
|
||
if restore_policy == nil { | ||
return rp | ||
} | ||
|
||
rp = append(rp, map[string]interface{}{ | ||
"default": true, | ||
}) | ||
|
||
return rp | ||
} | ||
|
||
func expandBooleanOrganizationPolicy(configured []interface{}) *cloudresourcemanager.BooleanPolicy { | ||
if len(configured) == 0 { | ||
return nil | ||
|
@@ -238,6 +273,21 @@ func expandBooleanOrganizationPolicy(configured []interface{}) *cloudresourceman | |
} | ||
} | ||
|
||
func expandRestoreOrganizationPolicy(configured []interface{}) (*cloudresourcemanager.RestoreDefault, error) { | ||
if len(configured) == 0 { | ||
return nil, nil | ||
} | ||
|
||
restoreDefaultMap := configured[0].(map[string]interface{}) | ||
default_value := restoreDefaultMap["default"].(bool) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: camelcase There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed |
||
|
||
if default_value { | ||
return &cloudresourcemanager.RestoreDefault{}, nil | ||
} | ||
|
||
return nil, fmt.Errorf("Invalid value for restore_policy. Expecting default = true") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of this, what do you think about adding a ValidateFunc to the field? That way, if someone sets the default to false, it would get caught at plan-time instead of apply-time. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added ValidateFunc |
||
} | ||
|
||
func flattenListOrganizationPolicy(policy *cloudresourcemanager.ListPolicy) []map[string]interface{} { | ||
lPolicies := make([]map[string]interface{}, 0, 1) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can you revert the extra indents here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done