Skip to content

Commit

Permalink
add backend configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed May 4, 2022
1 parent aed9945 commit b4e71ff
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions backend/s3-with-harbor.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
terraform {
backend "s3" {
bucket = "terraform"
key = "micro-depls/00-core-connectivity-k8s/10-harbor-registry-intranet/terraform.tfstate"
force_path_style = true
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
}

required_providers {
harbor = {
source = "BESTSELLER/harbor"
version = "3.5.0"
}
}
}

0 comments on commit b4e71ff

Please sign in to comment.