Skip to content

Commit

Permalink
start prepwork on VPC provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Molik committed Jan 1, 2024
1 parent 9c718bc commit e505b95
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions vpc/aws/aws.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package aws

type VPC struct {
client string

Check failure on line 4 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

field `client` is unused (unused)
}

func (v *VPC) createVPC() {

Check failure on line 7 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).createVPC` is unused (unused)

}

func (v *VPC) destroyVPC() {

Check failure on line 11 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).destroyVPC` is unused (unused)

}

func (v *VPC) createNat() {

Check failure on line 15 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).createNat` is unused (unused)

}

func (v *VPC) destroyNat() {

Check failure on line 19 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).destroyNat` is unused (unused)

}

func (v *VPC) createSubnet() {

Check failure on line 23 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).createSubnet` is unused (unused)

}

func (v *VPC) destroySubnet() {

Check failure on line 27 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).destroySubnet` is unused (unused)

}

func (v *VPC) createVPCPeer() {

Check failure on line 31 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).createVPCPeer` is unused (unused)

}

func (v *VPC) disconnectVPCPeer() {

Check failure on line 35 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).disconnectVPCPeer` is unused (unused)

}

func (v *VPC) createFirewall() {

Check failure on line 39 in vpc/aws/aws.go

View workflow job for this annotation

GitHub Actions / lint

func `(*VPC).createFirewall` is unused (unused)
}

func (v *VPC) destroyFirewall() {

}

type FirewallRule struct {
}

func (v *VPC) createFirewallRule() {

}

func (v *VPC) destroyFirewallRule() {

}

0 comments on commit e505b95

Please sign in to comment.