Облачная информация для группы параметров Redis - PullRequest
0 голосов
/ 04 марта 2020

Я хочу создать шаблон облачной информации для развертывания группы параметров redis. Проблема заключается в том, что каждый из моих параметров выглядит следующим образом:

{
    "Parameters": [
        {
            "ParameterName": "activedefrag",
            "ParameterValue": "no",
            "Description": "Enabled active memory defragmentation",
            "Source": "user",
            "DataType": "string",
            "AllowedValues": "yes,no",
            "IsModifiable": true,
            "MinimumEngineVersion": "4.0.9",
            "ChangeType": "immediate"
        },
        {
            "ParameterName": "active-defrag-cycle-max",
            "ParameterValue": "75",
            "Description": "Maximal effort for defrag in CPU percentage",
            "Source": "user",
            "DataType": "integer",
            "AllowedValues": "1-75",
            "IsModifiable": true,
            "MinimumEngineVersion": "4.0.9",
            "ChangeType": "immediate"
        }
}

Теперь я понимаю базовый c формат шаблона, но не могу понять, как передать параметры, как показано выше. .

Неудачный шаблон:

{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Description": "Template to create a consul cluster",
  "Parameters": {
    "CacheParameterGroupFamily": {
      "Description": "The name of the cache parameter group family that this cache parameter group is compatible with.",
      "Type": "String",
      "Default": "redis4.0",
      "AllowedValues": ["memcached1.4", "memcached1.5", "redis2.6", "redis2.8", "redis3.2", "redis4.0", "redis5.0"]
    },
    "ParameterGroupDescription": {
      "Description": "What this parameter group will be used for",
      "Type": "String"
    }
  },
  "Resources": {
    "RedisParameterGroup": {
      "Type": "AWS::ElastiCache::ParameterGroup",
      "Properties": {
        "CacheParameterGroupFamily" : { "Ref": "CacheParameterGroupFamily" },
        "Description" : { "Ref": "ParameterGroupDescription" },
        "Properties" : {
            "Parameters": [{
                "ParameterName": "activedefrag",
                "ParameterValue": "no",
                "Description": "Enabled active memory defragmentation",
                "Source": "user",
                "DataType": "string",
                "AllowedValues": "yes,no",
                "IsModifiable": true,
                "MinimumEngineVersion": "4.0.9",
                "ChangeType": "immediate"
            }]
        }
      }
    }
  }
}

1 Ответ

0 голосов
/ 05 марта 2020

Добро пожаловать в StackOverflow!

Вам необходимо включить эти параметры в раздел Parameters шаблона и изменить синтаксис так, чтобы он соответствовал формату Параметры . * 1006. *

{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Description": "Template to create a consul cluster",
  "Parameters": {
    "CacheParameterGroupFamily": {
      "Description": "The name of the cache parameter group family that this cache parameter group is compatible with.",
      "Type": "String",
      "Default": "redis4.0",
      "AllowedValues": ["memcached1.4", "memcached1.5", "redis2.6", "redis2.8", "redis3.2", "redis4.0", "redis5.0"]
    },
    "ParameterGroupDescription": {
      "Description": "What this parameter group will be used for",
      "Type": "String"
    },
    "activedefrag": {
        "Description": "Enabled active memory defragmentation",
        "Type": "String",
        "AllowedValues": ["yes", "no"],
        "Default": "no"
    },
    "activedefragcyclemax": {
        "Description": "Maximal effort for defrag in CPU percentage",
        "Type": "Number",
        "Default": 75,
        "MinValue": 1,
        "MaxValue": 75
    }
  },
  "Resources": {
    "RedisParameterGroup": {
      "Type": "AWS::ElastiCache::ParameterGroup",
      "Properties": {
        "CacheParameterGroupFamily" : { "Ref": "CacheParameterGroupFamily" },
        "Description" : { "Ref": "ParameterGroupDescription" },
        "Properties" : {
            "activedefrag": {"Ref": "activedefrag"},
            "active-defrag-cycle-max": {"Ref": "activedefragcyclemax"}
        }
      }
    }
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...