Skip to content

Commit

Permalink
feat: nic_nsg_association resource; general fixes (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCoelhoo authored Jun 7, 2022
1 parent 9156680 commit 4f2362f
Show file tree
Hide file tree
Showing 48 changed files with 2,775 additions and 1,113 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,13 @@ resource "aws_default_security_group" "example_vn_aws" {
protocol = "-1"
from_port = 0
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
self = true
}
egress {
protocol = "-1"
from_port = 0
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
self = true
}
}
Expand Down
10 changes: 0 additions & 10 deletions api/converter/converter.go

This file was deleted.

1,456 changes: 760 additions & 696 deletions api/proto/multy_service.pb.go

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions api/proto/multy_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import "api/proto/resourcespb/network_security_group.proto";
import "api/proto/resourcespb/route_table.proto";
import "api/proto/resourcespb/route_table_association.proto";
import "api/proto/resourcespb/network_interface.proto";
import "api/proto/resourcespb/network_interface_security_group_association.proto";
import "api/proto/resourcespb/subnet.proto";
import "api/proto/commonpb/common.proto";
import "api/proto/userpb/user.proto";
Expand All @@ -43,6 +44,11 @@ service MultyResourceService {
rpc UpdateNetworkInterface (resources.UpdateNetworkInterfaceRequest) returns (resources.NetworkInterfaceResource) {}
rpc DeleteNetworkInterface (resources.DeleteNetworkInterfaceRequest) returns (common.Empty) {}

rpc CreateNetworkInterfaceSecurityGroupAssociation (resources.CreateNetworkInterfaceSecurityGroupAssociationRequest) returns (resources.NetworkInterfaceSecurityGroupAssociationResource) {}
rpc ReadNetworkInterfaceSecurityGroupAssociation (resources.ReadNetworkInterfaceSecurityGroupAssociationRequest) returns (resources.NetworkInterfaceSecurityGroupAssociationResource) {}
rpc UpdateNetworkInterfaceSecurityGroupAssociation (resources.UpdateNetworkInterfaceSecurityGroupAssociationRequest) returns (resources.NetworkInterfaceSecurityGroupAssociationResource) {}
rpc DeleteNetworkInterfaceSecurityGroupAssociation (resources.DeleteNetworkInterfaceSecurityGroupAssociationRequest) returns (common.Empty) {}

rpc CreateRouteTable (resources.CreateRouteTableRequest) returns (resources.RouteTableResource) {}
rpc ReadRouteTable (resources.ReadRouteTableRequest) returns (resources.RouteTableResource) {}
rpc UpdateRouteTable (resources.UpdateRouteTableRequest) returns (resources.RouteTableResource) {}
Expand Down
144 changes: 144 additions & 0 deletions api/proto/multy_service_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4f2362f

Please sign in to comment.