Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: updated readme workflow file #9

Merged
merged 7 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ jobs:
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
tfcheck: 'complete-example / Check code format'
...
tfcheck: 'complete-example / Check code format'
12 changes: 6 additions & 6 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
#

# Name of this project
name : Terraform AZURE BUS SERVICE
name : Terraform AZURE SERVICE BUS

# License of this project
license: "APACHE"

# Canonical GitHub repo
github_repo: clouddrove/terraform-azure-bus-service
github_repo: clouddrove/terraform-azure-service-bus

# Badges to display
badges:
Expand All @@ -37,7 +37,7 @@ usage: |-
```hcl
# Basic
module "service_bus" {
source = "clouddrove/service-bus/azure"
source = "../.."
version = "1.0.0"
name = "app"
resource_group_name = module.resource_group.resource_group_name
Expand All @@ -48,7 +48,7 @@ usage: |-
```hcl
# topic
module "service_bus" {
source = "clouddrove/service-bus/azure"
source = "../.."
version = "1.0.0"
name = "app"
resource_group_name = module.resource_group.resource_group_name
Expand All @@ -68,7 +68,7 @@ usage: |-
```hcl
# queue
module "service_bus" {
source = "clouddrove/service-bus/azure"
source = "../.."
version = "1.0.0"
name = "app"
resource_group_name = module.resource_group.resource_group_name
Expand All @@ -87,7 +87,7 @@ usage: |-
```hcl
# topic_with_subscriptions
module "service_bus" {
source = "clouddrove/service-bus/azure"
source = "../.."
version = "1.0.0"
name = "app"
resource_group_name = module.resource_group.resource_group_name
Expand Down