-
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.
Merge pull request #1 from quantum-sec/fix/missing-vars
Updated tags, var types and missing attributes (patch)
- Loading branch information
Showing
12 changed files
with
131 additions
and
119 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @lukiffer | ||
* @lukiffer @deepanshumarwah |
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,22 +1,22 @@ | ||
# Terraform | ||
.terraform | ||
terraform.tfvars | ||
*.tfstate | ||
*.tfstate.backup | ||
|
||
# OS X | ||
.history | ||
.DS_Store | ||
|
||
# IntelliJ | ||
.idea_modules | ||
*.iml | ||
*.iws | ||
*.ipr | ||
.idea/ | ||
build/ | ||
*/build/ | ||
out/ | ||
node_modules | ||
*.keystore | ||
*.lic | ||
# Terraform | ||
.terraform | ||
terraform.tfvars | ||
*.tfstate | ||
*.tfstate.backup | ||
|
||
# OS X | ||
.history | ||
.DS_Store | ||
|
||
# IntelliJ | ||
.idea_modules | ||
*.iml | ||
*.iws | ||
*.ipr | ||
.idea/ | ||
build/ | ||
*/build/ | ||
out/ | ||
node_modules | ||
*.keystore | ||
*.lic |
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,22 +1,22 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.4.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-byte-order-marker | ||
- id: check-case-conflict | ||
- id: check-executables-have-shebangs | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: check-yaml | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
args: [--fix=no] | ||
- id: trailing-whitespace | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.21.0 | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_validate | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.4.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-byte-order-marker | ||
- id: check-case-conflict | ||
- id: check-executables-have-shebangs | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: check-yaml | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
args: [--fix=no] | ||
- id: trailing-whitespace | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.21.0 | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_validate |
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,3 +1,3 @@ | ||
{ | ||
"extends": "@quantum-sec/semantic-release-config/base" | ||
} | ||
{ | ||
"extends": "@quantum-sec/semantic-release-config/base" | ||
} |
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 +1 @@ | ||
latest:^0.12 | ||
latest:^0.12 |
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 +1 @@ | ||
© 2020 Quantum Security Pte. Ltd. All Rights Reserved. | ||
© 2020 Quantum Security Pte. Ltd. All Rights Reserved. |
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,38 +1,38 @@ | ||
# package- log-analytics | ||
|
||
This repository contains modules for deploying and managing Azure Log Analytics Workspace that are shared across other modules or instances. | ||
|
||
## Using a Terraform Module | ||
|
||
To use a module in your Terraform templates, create a `module` resource and set its `source` field to the Git URL of | ||
this repo. You should also set the `ref` parameter so you're fixed to a specific version of this repo, as the `master` | ||
branch may have backwards incompatible changes (see [module sources](https://www.terraform.io/docs/modules/sources.html)). | ||
|
||
For example, to use `1.0.0` of the `azure-function-app` module, you would add the following: | ||
|
||
```hcl | ||
module "function_app" { | ||
source = "git::[email protected]:quantum-sec/package-azure-functions.git//modules/azure-function-app?ref=1.0.0" | ||
// set the parameters for the azure-function-app module | ||
} | ||
``` | ||
|
||
_Note: the double slash (`//`) is intentional and required. It's part of Terraform's Git syntax (see [module sources](https://www.terraform.io/docs/modules/sources.html))._ | ||
|
||
See the module's documentation and `vars.tf` file for all the parameters you can set. Run `terraform get -update` to | ||
pull the latest version of this module from this repo before running the standard `terraform plan` and | ||
`terraform apply` commands. | ||
|
||
|
||
## Using Scripts & Binaries | ||
|
||
You can install the scripts and binaries in the `modules` folder of any repo using the [Gruntwork Installer](https://github.com/gruntwork-io/gruntwork-installer). | ||
For example, if the scripts you want to install are in the `modules/ecs-scripts` folder of the | ||
https://github.com/gruntwork-io/module-ecs repo, you could install them as follows: | ||
|
||
```bash | ||
gruntwork-install --module-name "ecs-scripts" --repo "https://github.com/gruntwork-io/module-ecs" --tag "0.0.1" | ||
``` | ||
|
||
See the docs for each script & binary for detailed instructions on how to use them. | ||
# package- log-analytics | ||
|
||
This repository contains modules for deploying and managing Azure Log Analytics Workspace that are shared across other modules or instances. | ||
|
||
## Using a Terraform Module | ||
|
||
To use a module in your Terraform templates, create a `module` resource and set its `source` field to the Git URL of | ||
this repo. You should also set the `ref` parameter so you're fixed to a specific version of this repo, as the `master` | ||
branch may have backwards incompatible changes (see [module sources](https://www.terraform.io/docs/modules/sources.html)). | ||
|
||
For example, to use `1.0.0` of the `azure-function-app` module, you would add the following: | ||
|
||
```hcl | ||
module "function_app" { | ||
source = "git::[email protected]:quantum-sec/package-azure-functions.git//modules/azure-function-app?ref=1.0.0" | ||
// set the parameters for the azure-function-app module | ||
} | ||
``` | ||
|
||
_Note: the double slash (`//`) is intentional and required. It's part of Terraform's Git syntax (see [module sources](https://www.terraform.io/docs/modules/sources.html))._ | ||
|
||
See the module's documentation and `vars.tf` file for all the parameters you can set. Run `terraform get -update` to | ||
pull the latest version of this module from this repo before running the standard `terraform plan` and | ||
`terraform apply` commands. | ||
|
||
|
||
## Using Scripts & Binaries | ||
|
||
You can install the scripts and binaries in the `modules` folder of any repo using the [Gruntwork Installer](https://github.com/gruntwork-io/gruntwork-installer). | ||
For example, if the scripts you want to install are in the `modules/ecs-scripts` folder of the | ||
https://github.com/gruntwork-io/module-ecs repo, you could install them as follows: | ||
|
||
```bash | ||
gruntwork-install --module-name "ecs-scripts" --repo "https://github.com/gruntwork-io/module-ecs" --tag "0.0.1" | ||
``` | ||
|
||
See the docs for each script & binary for detailed instructions on how to use them. |
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,18 +1,18 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
- feature/* | ||
- fix/* | ||
|
||
resources: | ||
repositories: | ||
- repository: pipeline-library | ||
type: github | ||
endpoint: quantum-sec-github | ||
name: quantum-sec/pipeline-library | ||
|
||
jobs: | ||
- template: templates/jobs/default.yml@pipeline-library | ||
parameters: | ||
containerImage: quantumdev.azurecr.io/quantum-ci-terragrunt:latest | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
- feature/* | ||
- fix/* | ||
|
||
resources: | ||
repositories: | ||
- repository: pipeline-library | ||
type: github | ||
endpoint: quantum-sec-github | ||
name: quantum-sec/pipeline-library | ||
|
||
jobs: | ||
- template: templates/jobs/default.yml@pipeline-library | ||
parameters: | ||
containerImage: quantumci.azurecr.io/quantum-ci-terragrunt:latest |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.