AWS::MSK::Cluster Issue

0

**You can't update multiple attributes of the cluster in same request. Use a different request for each update. **This happen when i am adding PrimaryClusterConfiguration

Resources:
  PrimaryClusterConfiguration:
    Type: 'AWS::MSK::Configuration'
    Properties:
      Name: 'PrimaryClusterConfiguration'
      ServerProperties: |
        log.retention.ms = -1

  PrimaryCluster:
    Type: AWS::MSK::Cluster
    Properties:
      ClusterName: PrimaryCluster
      KafkaVersion: 3.3.1
      NumberOfBrokerNodes: ${param:numBrokerNodes}
      BrokerNodeGroupInfo:
        ClientSubnets: ${param:subnets}
        InstanceType: kafka.t3.small
        SecurityGroups:
          - !GetAtt ClusterSecurityGroup.GroupId
        StorageInfo:
          EBSStorageInfo:
            VolumeSize: 100
      ConfigurationInfo:
        Arn: !GetAtt PrimaryClusterConfiguration.Arn
        Revision: !GetAtt PrimaryClusterConfiguration.LatestRevision.Revision
      EncryptionInfo:
        EncryptionInTransit:
          ClientBroker: TLS
          InCluster: true
      EnhancedMonitoring: DEFAULT
      LoggingInfo:
        BrokerLogs:
          CloudWatchLogs:
            Enabled: true
            LogGroup: !Ref ClusterLogGroup

  ClusterLogGroup:
    Type: AWS::Logs::LogGroup
    Properties:
      LogGroupName: '/msk/cluster/${self:service}'
      RetentionInDays: 7

  PrimaryClusterInfo:
    Type: Custom::MSKClusterInfo
    Properties:
      ServiceToken: !GetAtt ClusterInfoLambdaFunction.Arn
      Version: 1
      ClusterArn: !Ref PrimaryCluster

Thrisen
質問済み 1ヶ月前85ビュー
1回答
0

Hi,

Is your CFN Stack already created and you want to update the config of PrimaryCluster that is already created ? If yes, change its config parameter only 1 by 1.

Best,

Didier

profile pictureAWS
エキスパート
回答済み 1ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ