@@ -1210,6 +1210,10 @@ resource "gitlab_project" "foo" {
1210
1210
path = "foo.%d"
1211
1211
description = "Terraform acceptance tests"
1212
1212
initialize_with_readme = true
1213
+
1214
+ # So that acceptance tests can be run in a gitlab organization
1215
+ # with no billing
1216
+ visibility_level = "public"
1213
1217
}
1214
1218
` , rInt , rInt )
1215
1219
}
@@ -1221,6 +1225,10 @@ resource "gitlab_project" "foo" {
1221
1225
path = "foo.%d"
1222
1226
description = "Terraform acceptance tests"
1223
1227
initialize_with_readme = false
1228
+
1229
+ # So that acceptance tests can be run in a gitlab organization
1230
+ # with no billing
1231
+ visibility_level = "public"
1224
1232
}
1225
1233
` , rInt , rInt )
1226
1234
}
@@ -1318,6 +1326,10 @@ resource "gitlab_project" "template-name" {
1318
1326
description = "Terraform acceptance tests"
1319
1327
template_name = "rails"
1320
1328
default_branch = "master"
1329
+
1330
+ # So that acceptance tests can be run in a gitlab organization
1331
+ # with no billing
1332
+ visibility_level = "public"
1321
1333
}
1322
1334
` , rInt , rInt )
1323
1335
}
@@ -1337,6 +1349,10 @@ resource "gitlab_project" "template-name-custom" {
1337
1349
template_name = "myrails"
1338
1350
use_custom_template = true
1339
1351
default_branch = "master"
1352
+
1353
+ # So that acceptance tests can be run in a gitlab organization
1354
+ # with no billing
1355
+ visibility_level = "public"
1340
1356
}
1341
1357
` , rInt , rInt )
1342
1358
}
@@ -1350,6 +1366,10 @@ resource "gitlab_project" "template-id" {
1350
1366
template_project_id = 999
1351
1367
use_custom_template = true
1352
1368
default_branch = "master"
1369
+
1370
+ # So that acceptance tests can be run in a gitlab organization
1371
+ # with no billing
1372
+ visibility_level = "public"
1353
1373
}
1354
1374
` , rInt , rInt )
1355
1375
}
@@ -1364,6 +1384,10 @@ resource "gitlab_project" "template-mutual-exclusive" {
1364
1384
template_project_id = 999
1365
1385
use_custom_template = true
1366
1386
default_branch = "master"
1387
+
1388
+ # So that acceptance tests can be run in a gitlab organization
1389
+ # with no billing
1390
+ visibility_level = "public"
1367
1391
}
1368
1392
` , rInt , rInt )
1369
1393
}
@@ -1376,6 +1400,10 @@ resource "gitlab_project" "foo" {
1376
1400
description = "Terraform acceptance tests"
1377
1401
issues_template = "foo"
1378
1402
merge_requests_template = "bar"
1403
+
1404
+ # So that acceptance tests can be run in a gitlab organization
1405
+ # with no billing
1406
+ visibility_level = "public"
1379
1407
}
1380
1408
` , rInt , rInt )
1381
1409
}
@@ -1388,6 +1416,10 @@ resource "gitlab_project" "foo" {
1388
1416
description = "Terraform acceptance tests"
1389
1417
archive_on_destroy = true
1390
1418
archived = false
1419
+
1420
+ # So that acceptance tests can be run in a gitlab organization
1421
+ # with no billing
1422
+ visibility_level = "public"
1391
1423
}
1392
1424
` , rInt , rInt )
1393
1425
}
0 commit comments