generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a5c65c
commit f49103b
Showing
16 changed files
with
146 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
version = 1 | ||
|
||
[[analyzers]] | ||
name = "terraform" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Auto Assign PRs | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
workflow_dispatch: | ||
jobs: | ||
assignee: | ||
uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.0.8 | ||
secrets: | ||
GITHUB: ${{ secrets.GITHUB }} | ||
with: | ||
assignees: 'clouddrove-ci' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: tf-checks | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
example-basic: | ||
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.8 | ||
with: | ||
working_directory: './_example/basic/' | ||
|
||
example-complete: | ||
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.8 | ||
with: | ||
working_directory: './_example/complete/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: tf-lint | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
tf-lint: | ||
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.0.8 | ||
secrets: | ||
GITHUB: ${{ secrets.GITHUB }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
output "vnet_id" { | ||
description = "The id of the newly created vNet" | ||
value = module.vnet.vnet_id | ||
description = "The id of the newly created vNet" | ||
} | ||
|
||
output "vnet_name" { | ||
description = "The name of the newly created vNet" | ||
value = module.vnet.vnet_name | ||
description = "The name of the newly created vNet" | ||
} | ||
|
||
output "vnet_location" { | ||
description = "The location of the newly created vNet" | ||
value = module.vnet.vnet_location | ||
description = "The location of the newly created vNet" | ||
} | ||
|
||
output "vnet_address_space" { | ||
description = "The address space of the newly created vNet" | ||
value = module.vnet.vnet_address_space | ||
description = "The address space of the newly created vNet" | ||
} | ||
|
||
output "vnet_guid" { | ||
description = "The GUID of the virtual network." | ||
value = module.vnet.vnet_guid | ||
description = "The GUID of the virtual network." | ||
} | ||
|
||
output "vnet_rg_name" { | ||
description = "The name of the resource group in which to create the virtual network. Changing this forces a new resource to be created." | ||
value = module.vnet.vnet_rg_name | ||
} | ||
description = "The name of the resource group in which to create the virtual network. Changing this forces a new resource to be created." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.