Spazzy757
Spazzy757

Reputation: 929

Caching in Azure Devops

I need caching in my Azure Devops Pipeline

I have extensively used many CI/CD tools with terraform, I have found that keeping state between jobs is a mission (reinitializing backends, switching woprkspaces, etc) and think that by caching the .terraform folder I do not need to do this between jobs (this works perfectly in gitlabs CI/CD tool)

I am looking for something along the lines of:

cache:
    path: .terraform

job:
    use_cache: true

Upvotes: 2

Views: 480

Answers (1)

Thanh Le Hai Hoang
Thanh Le Hai Hoang

Reputation: 1403

Azure Pipeline caching will be available soon. You can follow its progress on this pull request

Upvotes: 1

Related Questions