We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dba0e5c commit 4c04e7eCopy full SHA for 4c04e7e
croudtech_ecs_tools/cli.py
@@ -1,5 +1,6 @@
1
import click
2
import boto3
3
+from botocore.config import Config as Boto3Config
4
from click.decorators import command
5
from click.termui import prompt
6
import os
@@ -10,9 +11,10 @@ class EcsTools:
10
11
12
def __init__(self, region):
13
self.region = region
- self.ecs_client = boto3.client("ecs", config={
14
- "region_name": self.region
15
- })
+ print(self.region)
+ self.ecs_client = boto3.client("ecs", config=Boto3Config(
16
+ region_name= self.region
17
+ ))
18
19
@property
20
def clusters(self):
setup.py
@@ -1,7 +1,7 @@
from setuptools import setup
-VERSION = "0.1.1"
+VERSION = "0.1.2"
7
def get_long_description():
0 commit comments