Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.85 KB | None | 0 0
  1. {
  2.   "Parameters": {
  3.     "InstanceType": {
  4.       "Description": "Typ instancji serwera",
  5.       "Type": "String",
  6.       "Default": "t2.micro",
  7.       "AllowedValues": [
  8.         "t2.micro",
  9.         "t2.small"
  10. ],
  11.       "ConstraintDescription": "musi zawierać poprawny typ"
  12.   },
  13.   "KeyName": {
  14.       "Description": "Nazwa klucza dostępowego do instancji",
  15.       "Type": "AWS::EC2::KeyPair::KeyName",
  16.       "ConstraintDescription": "Musi być istniejącym kluczem"
  17.   },
  18.   "SSHLocation": {
  19.       "Description": "Zakres dozwolonych adresów IP dla SSH",
  20.       "Type": "String",
  21.       "MinLength": "9",
  22.       "MaxLength": "18",
  23.       "Default": "0.0.0.0/0",
  24.       "AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.
  25. (\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})",
  26. "ConstraintDescription": "Musi być poprawnym zakresem w
  27.    formacie x.x.x.x/x.”
  28.    }
  29.  }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement