cookbooks/aws-parallelcluster-slurm/spec/unit/recipes/finalize_login_node_spec.rb [43:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      end

      status = "DEPLOYED"
      it "saves the cluster config version to dynamodb with status #{status}" do
        expected_command = "#{cookbook_venv_path}/bin/aws dynamodb put-item" \
          " --table-name parallelcluster-#{cluster_name}"\
          " --item '{\"Id\": {\"S\": \"CLUSTER_CONFIG.#{instance_id}\"}, \"Data\": {\"M\": {\"cluster_config_version\": {\"S\": \"#{cluster_config_version}\"}, \"status\": {\"S\": \"#{status}\"}, \"node_type\": {\"S\": \"#{node_type}\"}, \"lastUpdateTime\": {\"S\": \"#{time_now}\"}}}}'" \
          " --region #{region}"
        is_expected.to run_execute("Save cluster config version to DynamoDB").with(
          command: expected_command,
          retries: 3,
          retry_delay: 5
        )
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cookbooks/aws-parallelcluster-slurm/spec/unit/recipes/update_compute_spec.rb [57:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              end

              status = "DEPLOYED"
              it "saves the cluster config version to dynamodb with status #{status}" do
                expected_command = "#{cookbook_venv_path}/bin/aws dynamodb put-item" \
                  " --table-name parallelcluster-#{cluster_name}"\
                  " --item '{\"Id\": {\"S\": \"CLUSTER_CONFIG.#{instance_id}\"}, \"Data\": {\"M\": {\"cluster_config_version\": {\"S\": \"#{cluster_config_version}\"}, \"status\": {\"S\": \"#{status}\"}, \"node_type\": {\"S\": \"#{node_type}\"}, \"lastUpdateTime\": {\"S\": \"#{time_now}\"}}}}'" \
                  " --region #{region}"
                is_expected.to run_execute("Save cluster config version to DynamoDB").with(
                  command: expected_command,
                  retries: 3,
                  retry_delay: 5
                )
              end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



