Documentation ¶
Index ¶
Constants ¶
View Source
const ( TypeIngress = "ingress" TypeEgress = "egress" )
View Source
const ( ActionAllow = "allow" ActionDeny = "deny" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DefaultVPC ¶
type NetworkACL ¶
type NetworkACL struct { types.Metadata Rules []NetworkACLRule }
type NetworkACLRule ¶
type NetworkACLRule struct { types.Metadata Type types.StringValue Action types.StringValue Protocol types.StringValue CIDRs []types.StringValue }
type SecurityGroup ¶
type SecurityGroup struct { types.Metadata Description types.StringValue IngressRules []SecurityGroupRule EgressRules []SecurityGroupRule }
type SecurityGroupRule ¶
type SecurityGroupRule struct { types.Metadata Description types.StringValue CIDRs []types.StringValue }
type VPC ¶
type VPC struct { DefaultVPCs []DefaultVPC SecurityGroups []SecurityGroup NetworkACLs []NetworkACL }
Click to show internal directories.
Click to hide internal directories.