Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions content/docs/iac/get-started/gcp/review-project.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title_tag: Review the New Project | Google Cloud
meta_desc: This page provides an overview on how to a review a new Google Cloud project.
meta_desc: This page provides an overview on how to review a new Google Cloud project.
title: Review project
h1: "Pulumi & Google Cloud: Review project"
weight: 4
Expand All @@ -20,34 +20,36 @@ Let's review some of the generated project files:

{{% choosable language "javascript,typescript,python,go,csharp,java" %}}

- `Pulumi.yaml` defines the [project](/docs/concepts/projects/).
<!-- Please note that all the bullet points (like the line below) MUST NOT have any tabs before the hyphen, otherwise Hugo will think it's code that needs syntax highlighting applied. -->

- `Pulumi.yaml` defines the [project](/docs/concepts/projects/).

{{% /choosable %}}

{{% choosable language yaml %}}

- `Pulumi.yaml` defines both the [project](/docs/concepts/projects/) and the program that manages your stack resources.
- `Pulumi.yaml` defines both the [project](/docs/concepts/projects/) and the program that manages your stack resources.

{{% /choosable %}}

- `Pulumi.dev.yaml` contains [configuration](/docs/concepts/config/) values for the [stack](/docs/concepts/stack/) you initialized.
- `Pulumi.dev.yaml` contains [configuration](/docs/concepts/config/) values for the [stack](/docs/concepts/stack/) you initialized.

{{% choosable language java %}}

- `src/main/java/myproject` defines the project's Java package root.
- `src/main/java/myproject` defines the project's Java package root.

{{% /choosable %}}

{{% choosable language python %}}

- `__main__.py` is the Pulumi program that defines your stack resources.
- `__main__.py` is the Pulumi program that defines your stack resources.

{{% /choosable %}}

{{% choosable language "javascript,typescript,go,csharp,java" %}}

<!-- The wrapping spans are infortunately necessary here; without them, the renderer gets confused and generates invalid markup. -->
- <span>{{< langfile >}}</span> is the Pulumi program that defines your stack resources.
<!-- The wrapping spans are unfortunately necessary here; without them, the renderer gets confused and generates invalid markup. -->
- <span>{{< langfile >}}</span> is the Pulumi program that defines your stack resources.

{{% /choosable %}}

Expand Down
Loading