2020-08-02 18:23:23 +08:00
|
|
|
# terraform.tfvars example
|
2020-08-02 18:23:52 +08:00
|
|
|
```
|
2020-08-02 18:23:23 +08:00
|
|
|
aws_access_key = "..."
|
|
|
|
aws_secret_key = "..."
|
|
|
|
aws_region = "ap-east-1"
|
|
|
|
default-tags = {
|
|
|
|
"owner" = "KF"
|
|
|
|
"terraform" = "initial-deployment-only"
|
|
|
|
"environment" = "demo"
|
|
|
|
"project" = "project1"
|
|
|
|
"application" = "network"
|
|
|
|
}
|
2020-08-02 18:23:52 +08:00
|
|
|
```
|