@@ -49,7 +49,7 @@ func secureGCPCloudAuthAccountMinimumConfiguration(accountID string) string {
4949resource "sysdig_secure_cloud_auth_account" "sample" {
5050 provider_id = "sample-%s"
5151 provider_type = "PROVIDER_GCP"
52- enabled = " true"
52+ enabled = true
5353}` , accountID )
5454}
5555
@@ -86,10 +86,10 @@ func secureGCPCloudAuthAccountWithFC(accountID string) string {
8686resource "sysdig_secure_cloud_auth_account" "sample-1" {
8787 provider_id = "sample-1-%s"
8888 provider_type = "PROVIDER_GCP"
89- enabled = " true"
89+ enabled = true
9090 feature {
9191 secure_config_posture {
92- enabled = " true"
92+ enabled = true
9393 components = ["COMPONENT_SERVICE_PRINCIPAL/secure-posture"]
9494 }
9595 secure_identity_entitlement {
@@ -188,7 +188,7 @@ func secureCloudAuthAccountMinimumConfigurationAzure(accountId string) string {
188188resource "sysdig_secure_cloud_auth_account" "sample" {
189189 provider_id = "sample-%s"
190190 provider_type = "PROVIDER_AZURE"
191- enabled = " true"
191+ enabled = true
192192 provider_tenant_id = "%s"
193193 }` , accountId , randomTenantId )
194194}
@@ -229,11 +229,11 @@ func secureAzureCloudAuthAccountWithFC(accountID string) string {
229229 resource "sysdig_secure_cloud_auth_account" "sample-1" {
230230 provider_id = "sample-1-%s"
231231 provider_type = "PROVIDER_AZURE"
232- enabled = " true"
232+ enabled = true
233233 provider_tenant_id = "%s"
234234 feature {
235235 secure_config_posture {
236- enabled = " true"
236+ enabled = true
237237 components = ["COMPONENT_SERVICE_PRINCIPAL/secure-posture"]
238238 }
239239 }
0 commit comments