-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
azurerm_cosmosdb_account: enable_analytical_storage #10055
Conversation
Initial implementation assumed it's a capability, whereas it's a property. This PR implements it properly. Fixes #9119
|
Also verified during the acceptance test that account had property set properly. |
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.
Thanks @favoretti - overall looks good aside from one comment
|
@katbyte should be good to go now. |
@favoretti @katbyte Do you think it will be a good idea to also add the Analytical Storage Time to Live ? |
Sure, although I won’t be able to get to it until Monday. If you wanna do
it - I’d wait for this to be merged. Conflict resolution is painful :)
…On Thu, 7 Jan 2021 at 16:11, Florian Leparoux ***@***.***> wrote:
@favoretti <https://github.com/favoretti> @katbyte
<https://github.com/katbyte> Do you think it will be a good idea to also
add the Analytical Storage Time to Live ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#10055 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGERNTQN3LDNEQMKXHLB7TSYXFLTANCNFSM4VVOFYRA>
.
|
Reminder to myself - rename |
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.
LGTM 👍
@katbyte Renamed property as requested. |
@T1loc Quick googling didn't tell me anything on TTL, would you be so kind to point me to it, or better yet, log a separate issue for that property, I can tackle it in a separate PR then. |
@favoretti Yes we need a new issue. This options need at container creation time to have the AnalyticalStore enable. I will open an issue in ~1h |
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.
@favoretti - i'm getting this test failure:
------- Stdout: -------
=== RUN TestAccCosmosDBAccount_analyticalStorage
=== PAUSE TestAccCosmosDBAccount_analyticalStorage
=== CONT TestAccCosmosDBAccount_analyticalStorage
testing.go:684: Step 0 error: Check failed: 1 error occurred:
* Check 2/2 error: azurerm_cosmosdb_account.test: Attribute 'enable_analytical_storage' not found
--- FAIL: TestAccCosmosDBAccount_analyticalStorage (681.00s)
FAIL
@tombuildsstuff Fixed acceptance test too after the rename, so maybe this can go in 2.43 too.
|
Tests are looking good now 👍 |
This has been released in version 2.43.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azurerm" {
version = "~> 2.43.0"
}
# ... other configuration ... |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks! |
Initial implementation assumed it's a capability, whereas it's a
property. This PR implements it properly.
Fixes #9119