export type SecurityGroupRule = { name: string; properties: { priority: number; access: 'Allow' | 'Deny'; direction: 'Inbound' | 'Outbound'; destinationPortRange: string; protocol: 'Tcp' | 'Udp' | 'All'; sourceAddressPrefix: string; sourcePortRange: string; destinationAddressPrefix: string; }; }; export type SecurityRulesType = { AllowSsh: SecurityGroupRule; };