Both things have been introduced recently, and let you access even private ec2 instances
- Without VPN
- No open SSH port
- Authentication / Authorization is fully delegated to IAM
# Assumes valid AWS Credentials in ENV
Both things have been introduced recently, and let you access even private ec2 instances
# Assumes valid AWS Credentials in ENV
Both things have been introduced recently, and let you access even private ec2 instances
# Assumes valid AWS Credentials in ENV
| (function() { | |
| angular | |
| .module('myApp') | |
| .directive('myUiGridResize', myUiGridResizeDirective); | |
| /* @ngInject */ | |
| function myUiGridResizeDirective(gridUtil, uiGridConstants) { | |
| return { | |
| restrict: 'A', | |
| require: 'uiGrid', |
| javascript | |
| ES6ValidationInspection | |
| JSAccessibilityCheckInspection | |
| JSBitwiseOperatorUsageInspection | |
| JSCheckFunctionSignaturesInspection | |
| JSClosureCompilerSyntaxInspection | |
| JSCommentMatchesSignatureInspection | |
| JSComparisonWithNaNInspection | |
| JSConsecutiveCommasInArrayLiteralInspection |
| <?php | |
| /** | |
| * @author Marco Pivetta <[email protected]> | |
| */ | |
| use Zend\ServiceManager\ServiceManager; | |
| use Zend\Mvc\Service\ServiceManagerConfig; | |
| use DoctrineORMModuleTest\Framework\TestCase; | |
| use ContentTest\Util\ServiceManagerFactory; | |
| use Zend\Loader\StandardAutoloader; |
| We rename "master" to "develop" | |
| We rename "release" to "master" | |
| Thus "master" stays the default branch, which means most PRs will be made | |
| against it. | |
| Bugfixes are merged to: | |
| - master | |
| - develop | |
| Features are merged to: | |
| - develop | |
| When develop looks like the next minor or major version: |
| <?php | |
| function verifyUri($value) { | |
| try { | |
| $uri = Zend\Uri\UriFactory::factory($value) | |
| } catch (Zend\Uri\Exception\InvalidUriPartException $e) { | |
| return false; | |
| } |