func IsComplete()

in pkg/cloudformation/helpers.go [71:78]


func IsComplete(status string) bool {
	for _, s := range CompleteStatuses {
		if s == status {
			return true
		}
	}
	return false
}