Skip to content

Commit

Permalink
Opsworks only runs in east-1
Browse files Browse the repository at this point in the history
It doesn't have endpoints in every region, needs to be called in east-1,
so we may as well specify that to avoid it potentially being set by ENV
  • Loading branch information
Clarke Brunsdon committed May 19, 2016
1 parent bad454d commit 7100b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/oops/opsworks_deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class OpsworksDeploy
attr_accessor :stack_name, :app_name

def initialize(app_name, stack_name)
@client = Aws::OpsWorks::Client.new
@client = Aws::OpsWorks::Client.new region: 'us-east-1'
self.stack_name = stack_name
self.app_name = app_name
end
Expand Down

0 comments on commit 7100b44

Please sign in to comment.