-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
d|r/cloud*: use service_name for identifier #173
Conversation
3a26591
to
776546e
Compare
DefaultFunc: schema.EnvDefaultFunc("OVH_VRACK_ID", nil), | ||
Description: "Id of the vrack. DEPRECATED, use `service_name` instead", | ||
ConflictsWith: []string{"service_name"}, | ||
}, | ||
"service_name": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
DefaultFunc: schema.EnvDefaultFunc("OVH_VRACK", nil), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intended to have two different env vars OVH_VRACK_ID
and OVH_VRACK
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And shouldn't it be OVH_VRACK_SERVICE
?
DefaultFunc: schema.EnvDefaultFunc("OVH_VRACK_ID", nil), | ||
Description: "Id of the vrack. DEPRECATED, use `service_name` instead", | ||
ConflictsWith: []string{"service_name"}, | ||
}, | ||
"service_name": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
DefaultFunc: schema.EnvDefaultFunc("OVH_VRACK", nil), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as in ovh/resource_ovh_vrack_dedicated_server.go
776546e
to
43cbe0e
Compare
No description provided.