@@ -70,7 +70,7 @@ func ResourceSecurityposturePostureDeployment() *schema.Resource {
7070 Type : schema .TypeString ,
7171 Required : true ,
7272 Description : `Relative name of the posture which needs to be deployed. It should be in the format:
73- organizations/<ORG_ID> /locations/<LOCATION> /postures/<postureID> ` ,
73+ organizations/{organization_id} /locations/{location} /postures/{posture_id} ` ,
7474 },
7575 "posture_revision_id" : {
7676 Type : schema .TypeString ,
@@ -82,9 +82,9 @@ func ResourceSecurityposturePostureDeployment() *schema.Resource {
8282 Required : true ,
8383 ForceNew : true ,
8484 Description : `The resource on which the posture should be deployed. This can be in one of the following formats:
85- projects/< project_number>
86- folders/< folder_number>
87- organizations/< organization_id> ` ,
85+ projects/{ project_number},
86+ folders/{ folder_number},
87+ organizations/{ organization_id} ` ,
8888 },
8989 "description" : {
9090 Type : schema .TypeString ,
@@ -101,14 +101,14 @@ organizations/<organization_id>`,
101101 Computed : true ,
102102 Description : `This is an output only optional field which will be filled in case when
103103PostureDeployment state is UPDATE_FAILED or CREATE_FAILED or DELETE_FAILED.
104- It denotes the desired Posture to be deployed.` ,
104+ It denotes the desired posture to be deployed.` ,
105105 },
106106 "desired_posture_revision_id" : {
107107 Type : schema .TypeString ,
108108 Computed : true ,
109109 Description : `This is an output only optional field which will be filled in case when
110110PostureDeployment state is UPDATE_FAILED or CREATE_FAILED or DELETE_FAILED.
111- It denotes the desired Posture revision_id to be deployed.` ,
111+ It denotes the desired posture revision_id to be deployed.` ,
112112 },
113113 "etag" : {
114114 Type : schema .TypeString ,
@@ -134,9 +134,10 @@ CREATE/UPDATE/DELETE methods.`,
134134 Description : `If set, there are currently changes in flight to the posture deployment.` ,
135135 },
136136 "state" : {
137- Type : schema .TypeString ,
138- Computed : true ,
139- Description : `State of the posture deployment.` ,
137+ Type : schema .TypeString ,
138+ Computed : true ,
139+ Description : `State of the posture deployment. A posture deployment can be in the following terminal states:
140+ ACTIVE, CREATE_FAILED, UPDATE_FAILED, DELETE_FAILED.` ,
140141 },
141142 "update_time" : {
142143 Type : schema .TypeString ,
0 commit comments