We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Note: This is not an issue. This is a request for help.
I am trying to add outbound_ip_addresses from Azure to MongoDB Atlas. And I am having issue with authorization. I have added my IP to whitelist.
outbound_ip_addresses
I am not sure where do I get username and api_key for the provider.
username
api_key
provider "mongodbatlas" { username = "${var.mongodb_atlas_username}" api_key = "${var.mongodb_atlas_api_key}" }
Here is my resources
resource "mongodbatlas_ip_whitelist" "staging-app-service" { group = "xxxxx" for_each = toset(split(",", "${azurerm_app_service.jamboree_as.outbound_ip_addresses}")) cidr_block = "${each.value}/32" comment = "staging outbound ip ${each.key}" depends_on = [ "azurerm_app_service.jamboree_as" ] }
I am getting api_key from here
and I am getting username from here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note: This is not an issue. This is a request for help.
I am trying to add
outbound_ip_addresses
from Azure to MongoDB Atlas.And I am having issue with authorization.
I have added my IP to whitelist.
I am not sure where do I get
username
andapi_key
for the provider.Here is my resources
I am getting
api_key
from hereand I am getting username from here
The text was updated successfully, but these errors were encountered: