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

add *.ubuntu.com to the filter #52

Closed
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
10 changes: 5 additions & 5 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
# this repository, with the Development group able to author and push pull requests.

# In a true org structure, this line would be something like: "app-fqdn-rules.tf @<secops>"
app-fqdn-rules.tf @<secops>
app-fqdn-rules.tf @MAbdul-Rehman

# In a true org structure, these files should have the Network Operators account as the owner:
main.tf @<netops>
provider.tf @<netops>
variables.tf @<netops>
versions.tf @<netops>
main.tf @MAbdul-Rehman
provider.tf @MAbdul-Rehman
variables.tf @MAbdul-Rehman
versions.tf @MAbdul-Rehman
6 changes: 3 additions & 3 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: 'Terraform Cloud'
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
pull_request_target:
types: [assigned, opened, synchronize, reopened]


# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# .github
.github
# Local .terraform directories
**/.terraform/*

Expand Down
1 change: 1 addition & 0 deletions app-fqdn-rules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ locals {
tcp = {
"*.aviatrix.com" = "443"
"aviatrix.com" = "80"
"*.ubuntu.com" = "80"
}
udp = {
"dns.google.com" = "53"
Expand Down
2 changes: 1 addition & 1 deletion backend.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_version = ">= 1.2.0"
backend "remote" {
# organization = "<replace-with-your-Terraform-Cloud-organization-and-uncomment>"
organization = "AWS_TEST_LAB"
workspaces {
name = "ace-iac-day-two"
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ACE-IAC Git Aviatrix Infrastructure

// Muhammad AbdulRehman Aamer Pull Request
data "aviatrix_spoke_gateway" "egress" {
gw_name = var.azure_spoke2_name
}
Expand Down