diff --git a/build/inspec b/build/inspec index d9c166b470af..76b62574d267 160000 --- a/build/inspec +++ b/build/inspec @@ -1 +1 @@ -Subproject commit d9c166b470af418e9f79cbdb24c340b243bfaaf6 +Subproject commit 76b62574d267b86061dee7df30263c02cf6a1e2f diff --git a/build/terraform b/build/terraform index 5df50b3662b0..4315c89629d2 160000 --- a/build/terraform +++ b/build/terraform @@ -1 +1 @@ -Subproject commit 5df50b3662b0aaae52b05162ec1e69eff9857511 +Subproject commit 4315c89629d2542026fe759e67e42f4bded15a08 diff --git a/build/terraform-beta b/build/terraform-beta index d50541047cfc..ebdead1a6214 160000 --- a/build/terraform-beta +++ b/build/terraform-beta @@ -1 +1 @@ -Subproject commit d50541047cfcb9b13ce8cb438eb1771dc25abb1e +Subproject commit ebdead1a6214733f90d332b03885583d30a68924 diff --git a/third_party/terraform/resources/resource_storage_bucket_acl.go b/third_party/terraform/resources/resource_storage_bucket_acl.go index b9d3ea6bf010..89edd1536180 100644 --- a/third_party/terraform/resources/resource_storage_bucket_acl.go +++ b/third_party/terraform/resources/resource_storage_bucket_acl.go @@ -62,13 +62,6 @@ func resourceStorageRoleEntityCustomizeDiff(diff *schema.ResourceDiff, meta inte conf := map[string]struct{}{} for i := 0; i < count; i++ { old, new := diff.GetChange(fmt.Sprintf("role_entity.%d", i)) - - // project-owners- is explicitly stripped from the roles that this - // resource will delete - if strings.Contains(old.(string), "OWNER:project-owners-") { - continue - } - state[old.(string)] = struct{}{} conf[new.(string)] = struct{}{} }