Closed t-ikeda-sti closed 1 year ago
Users want to deploy from infrastructure to application with one command.
The following command creates all resources defined in dacrane.yaml. However, updating is not supported at this time.
dacrane.yaml
$ dacrane up
The following command deletes all resources that had been created.
$ dacrane down
Wait for resources given in "dependencies". For example, foo waits for the creation or update of bar when defined as follows
foo
bar
kind: resource type: providerA name: foo dependencies: [resource.bar] parameters: a: 1 b: 2 --- kind: resource type: providerB name: bar parameters: a: 1 b: 2
Implemented.
User Story
Users want to deploy from infrastructure to application with one command.
Acceptance Criteria
Design & Specification
The following command creates all resources defined in
dacrane.yaml
. However, updating is not supported at this time.The following command deletes all resources that had been created.
Wait for resources given in "dependencies". For example,
foo
waits for the creation or update ofbar
when defined as follows