github.com/kubernetes-incubator/kube-aws@v0.16.4/docs/advanced-topics/cloudformation-updates-in-cli.md (about)

     1  # CloudFormation Streaming
     2  
     3  CloudFormation stack events can be streamed to the console (stdout) during a `kube-aws apply` operation.
     4  
     5  The format of the messages are:
     6  ```
     7  TimePassed   StackName   ResourceStatus    LogicalResourceId   StatusReason
     8  ```
     9  For example:
    10  ```
    11  +00:02:45	Nodepoolb	CREATE_IN_PROGRESS      		WorkersLC             	"Resource creation Initiated"
    12  +00:02:45	Nodepoolb	CREATE_COMPLETE         		WorkersLC
    13  +00:02:48	Nodepoolb	CREATE_IN_PROGRESS      		Workers
    14  ```
    15  
    16  This feature is enabled by default and configurable in cluster.yaml:
    17  
    18  ```
    19  cloudFormationStreaming: true
    20  ```