Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Oct 15, 2024
1 parent 5f78282 commit 767292c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions terraform-scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,17 @@ resource "github_app_installation_repository" "quarkus_UNIQUE_NAME" {
repository = github_repository.quarkus_UNIQUE_NAME.name
}
```

## Provisioning Quay.io repositories

To provision Quay.io repositories, add the following snippet to the .tf file:

```terraform
# Create Quay.io repository
resource "quay_repository" "quarkus_UNIQUE_NAME" {
name = "quarkus-DASHED-NAME"
description = "Quarkus UNIQUE_NAME extension"
namespace = data.quay_organization.quarkiverse.name
visibility = "public"
}
```

0 comments on commit 767292c

Please sign in to comment.