Skip to content

Commit 10d4fc5

Browse files
committed
Move AppEngine to fixtures
1 parent 2a1f786 commit 10d4fc5

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

‎test/fixtures/pubsub_scheduled/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@
1414
* limitations under the License.
1515
*/
1616

17+
module "app-engine" {
18+
source = "terraform-google-modules/project-factory/google//modules/app_engine"
19+
version = "~> 3.0"
20+
21+
location_id = "us-central"
22+
23+
project_id = var.project_id
24+
}
25+
1726
module "pubsub_scheduled_example" {
1827
source = "../../../examples/pubsub_scheduled"
1928
project_id = var.project_id

‎test/setup/main.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,3 @@ module "project" {
3333
]
3434
}
3535

36-
module "app-engine" {
37-
source = "terraform-google-modules/project-factory/google//modules/app_engine"
38-
version = "~> 3.0"
39-
40-
location_id = "us-central"
41-
42-
project_id = module.project.project_id
43-
}

0 commit comments

Comments
 (0)