Skip to content

Commit 13655ad

Browse files
committed
README again, terraform format
1 parent 3a332ce commit 13655ad

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,15 @@ Click the **Use this template** button at the top right of this page to create y
6565
> [!NOTE]
6666
> A pipeline will run and fail when the repository is created. This result is expected as the pipeline is attempting to deploy the application and the necessary configuration has not yet been completed.
6767
68+
Create a `qa` branch from the `prod` branch in the repository. This branch will be used to test the changes before they are promoted to the `prod` branch. Changes to the `qa` branch in this repository are deployed to the `qa` environment in PingOne. As with the `prod` branch, the pipeline will fail due to missing configuration.
69+
70+
```bash
71+
git checkout prod
72+
git pull origin prod
73+
git checkout -b qa
74+
git push origin qa
75+
```
76+
6877
## Development Lifecycle Diagram
6978

7079
The use cases in this repository follow a flow similar to this diagram:

terraform/customer_simple_registration.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ resource "docker_image" "registration" {
8989

9090
# Define a Docker container resource
9191
resource "docker_container" "registration" {
92-
name = "simple-registration"
93-
image = docker_image.registration.image_id
92+
name = "simple-registration"
93+
image = docker_image.registration.image_id
9494
network_mode = "bridge"
9595
ports {
9696
internal = 8443

0 commit comments

Comments
 (0)