aws_ecs_taskdefinition: container memory value from string to int (#53915)
This commit is contained in:
parent
35b295f6af
commit
410a1d2161
1 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ EXAMPLES = '''
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
hostPort: 8080
|
hostPort: 8080
|
||||||
cpu: 512
|
cpu: 512
|
||||||
memory: 1GB
|
memory: 1024
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Create task definition
|
- name: Create task definition
|
||||||
|
@ -169,7 +169,7 @@ EXAMPLES = '''
|
||||||
hostPort: 8080
|
hostPort: 8080
|
||||||
launch_type: FARGATE
|
launch_type: FARGATE
|
||||||
cpu: 512
|
cpu: 512
|
||||||
memory: 1GB
|
memory: 1024
|
||||||
state: present
|
state: present
|
||||||
network_mode: awsvpc
|
network_mode: awsvpc
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue