Skip to content

Commit b7a362a

Browse files
raghavanandanRaghav Anandan
andauthored
Remove quotes for boolean values (#447)
Co-authored-by: Raghav Anandan <[email protected]>
1 parent 215cabc commit b7a362a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sysdig/resource_sysdig_secure_cloud_auth_account_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func secureGCPCloudAuthAccountMinimumConfiguration(accountID string) string {
4949
resource "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 {
8686
resource "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 {
188188
resource "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

Comments
 (0)