Skip to content

Commit

Permalink
fix failing posture test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sneha Prasad committed Mar 7, 2024
1 parent 5780286 commit 0e85d17
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "google_securityposture_posture" "posture1" {
posture_id = "posture_1"
resource "google_securityposture_posture" "posture_example" {
posture_id = "posture_example"
parent = "organizations/<%= ctx[:test_env_vars]['org_id'] %>"
location = "global"
state = "ACTIVE"
Expand Down Expand Up @@ -27,6 +27,6 @@ resource "google_securityposture_posture_deployment" "<%= ctx[:primary_resource_
location = "global"
description = "a new posture deployment"
target_resource = "projects/<%= ctx[:test_env_vars]['project_number'] %>"
posture_id = google_securityposture_posture.posture1.name
posture_revision_id = google_securityposture_posture.posture1.revision_id
posture_id = google_securityposture_posture.posture_example.name
posture_revision_id = google_securityposture_posture.posture_example.revision_id
}

0 comments on commit 0e85d17

Please sign in to comment.