Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # terraform crash on elasticache params group state refresh when manual change present
  2.  
  3. provider "aws" {
  4. }
  5.  
  6. resource "aws_elasticache_parameter_group" "redis" {
  7. name = "bug-repro"
  8. family = "redis2.8"
  9. description = "bug repro"
  10. parameter {
  11. name = "timeout"
  12. value = 180
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement