Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
update plugin with yaml tags
Browse files Browse the repository at this point in the history
  • Loading branch information
kkeller-cb committed Feb 16, 2021
1 parent 9aeb766 commit 4ad0ce0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ type Provider struct {

type Account struct {
ID string
RoleARN string
RoleARN string `yaml:"role_arn"`
}

type Config struct {
Regions []string
Accounts []Account
LogLevel *string
MaxRetries *int
Regions []string `yaml:"regions"`
Accounts []Account `yaml:"accounts"`
LogLevel *string `yaml:"log_level"`
MaxRetries *int `yaml:"max_retries"`
Resources []struct {
Name string
Other map[string]interface{} `yaml:",inline"`
Expand Down

0 comments on commit 4ad0ce0

Please sign in to comment.