You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
7
+
8
+
Contributions to this project are [released](https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license) to the public under the [project's open source license](LICENSE).
9
+
10
+
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
11
+
12
+
## Submitting a pull request
13
+
14
+
1.[Fork][fork] and clone the repository
15
+
1. Configure and install the dependencies: `terraform init`
16
+
1. Create a new branch: `git checkout -b my-branch-name`
17
+
1. Make your change, validate and confirm it works.
18
+
1. Format your code with `terraform fmt`.
19
+
1. Push to your fork and [submit a pull request][pr]
20
+
1. Pat yourself on the back and wait for your pull request to be reviewed and merged.
21
+
22
+
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
23
+
24
+
- Follow the [terraform styling conventions](https://developer.hashicorp.com/terraform/language/style#code-formatting) in the repository and run `terraform fmt` on your code before committing.
25
+
- Validate your changes with `terraform validate`, `terraform plan` and `terraform apply`.
26
+
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
27
+
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
28
+
29
+
## Resources
30
+
31
+
-[How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,22 +10,22 @@ Terraform modules that configure and maintain the infrastructure needed to run G
10
10
11
11
This repo contains two Terraform modules:
12
12
13
-
*[nsg](./modules/nsg/) module: Uses a [Network Security Group (NSG)](https://learn.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview) to manage the network security of the VNet.
13
+
-[nsg](./modules/nsg/) module: Uses a [Network Security Group (NSG)](https://learn.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview) to manage the network security of the VNet.
# The resources use this base_name as a name prefix, e.g. ${base_name}-rg for the resource group
21
21
base_name = "vnet-test"
22
-
22
+
23
23
# Retrieve through the GitHub API (see GitHub docs for instructions)
24
24
github_enterprise_id = "12345"
25
25
}
26
26
```
27
27
28
-
*[firewall](./modules/firewall/) module: Uses an [Azure Firewall](https://learn.microsoft.com/en-us/azure/firewall/overview) to manage the network security of the VNet.
28
+
-[firewall](./modules/firewall/) module: Uses an [Azure Firewall](https://learn.microsoft.com/en-us/azure/firewall/overview) to manage the network security of the VNet.
29
29
30
30
<details><summary>Terraform config for the firewall</summary>
31
31
@@ -34,11 +34,11 @@ Provision and configure the infrastructure in Terraform by calling this module:
This project uses GitHub issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new issue.
6
+
7
+
For help or questions about using this project, please open an issue.
8
+
9
+
-`terraform-github-runner-vnet` is not actively developed but is maintained by GitHub staff **AND THE COMMUNITY**. We will do our best to respond to support and community questions in a timely manner.
10
+
11
+
## GitHub Support Policy
12
+
13
+
Support for this project is limited to the resources listed above.
0 commit comments