Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
updated cfResource attributes (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
ojkelly committed Nov 7, 2018
1 parent ac4d9e5 commit 57ed854
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions types/types.go
Expand Up @@ -6,11 +6,14 @@ type Validatable interface {

// CfResource - A CloudFormation Resource
type CfResource struct {
Type string `yaml:"Type"`
Properties interface{} `yaml:"Properties"`
Condition interface{} `yaml:"Condition,omitempty"`
Metadata interface{} `yaml:"Metadata,omitempty"`
DependsOn interface{} `yaml:"DependsOn,omitempty"`
Type string `yaml:"Type"`
Properties interface{} `yaml:"Properties"`
Condition interface{} `yaml:"Condition,omitempty"`
Metadata interface{} `yaml:"Metadata,omitempty"`
DependsOn interface{} `yaml:"DependsOn,omitempty"`
CreationPolicy interface{} `yaml:"CreationPolicy,omitempty"`
UpdatePolicy interface{} `yaml:"UpdatePolicy,omitempty"`
DeletionPolicy interface{} `yaml:"DeletionPolicy,omitempty"`
}

// ResourceMap - a map of resouces
Expand Down

0 comments on commit 57ed854

Please sign in to comment.