Skip to content

Commit

Permalink
Storing Credentials as a Hash in state file as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Erix authored and Michael Cook committed Jan 19, 2017
1 parent 31d95c1 commit 93868b6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions builtin/providers/aws/resource_aws_sns_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ func resourceAwsSnsApplication() *schema.Resource {
StateFunc: hashSum,
},
"principal": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: false,
Type: schema.TypeString,
Optional: true,
ForceNew: false,
StateFunc: hashSum,
},
"created_topic": &schema.Schema{
Type: schema.TypeString,
Expand Down

0 comments on commit 93868b6

Please sign in to comment.