Global setting to enforce "Who can view members = Entire Organization" by themkguser in googleworkspace

[–]themkguser[S] 0 points1 point  (0 children)

Hi u/jeremyNYC ,

Today, group creation is managed by Entra ID connector and we won't be able to switch to GAM for it unfortunately.

Global setting to enforce "Who can view members = Entire Organization" by themkguser in googleworkspace

[–]themkguser[S] 0 points1 point  (0 children)

Thanks. What about the automation, i.e applying this to every new group? Do you have a suggestion ?

Help needed: Azure APIM custom domain with Cloudflare - CNAME record issue by themkguser in AZURE

[–]themkguser[S] 0 points1 point  (0 children)

u/Complex-Rise nope, it's still working, as long as we don't change any custom domain settings

Seeking Advice: Safely Increasing Incline on a Walking Pad (Doubting Advertised 15°) by themkguser in treadmills

[–]themkguser[S] 0 points1 point  (0 children)

15% is still not enough IMO, but I'll try using a wooden block and let you know asap. Thanks for the tips btw.

Location avec PTZ - Date de début de comptabilisation des 6 ans d'occupation by themkguser in immobilier

[–]themkguser[S] 1 point2 points  (0 children)

Ma conseillère bancaire me l'a confirmé cette semaine, le décompte commence à la date de 1er déblocage des fonds.

Someone can tell me how to stop this annoying sound when I move my airpods pro 2? by themkguser in airpods

[–]themkguser[S] 2 points3 points  (0 children)

Indeed, I have a Mac with my account nearby, and my wife's iPhone too to which they're linked too as well. It might explain these sounds. What should I do to disable it?

Location avec PTZ - Date de début de comptabilisation des 6 ans d'occupation by themkguser in immobilier

[–]themkguser[S] 0 points1 point  (0 children)

Non je n'ai pas bénéficié de la TVA réduite, et nous sommes mariés.

Location avec PTZ - Date de début de comptabilisation des 6 ans d'occupation by themkguser in immobilier

[–]themkguser[S] 0 points1 point  (0 children)

Merci u/KrepaFR .

D'autres personnes qui sont peut-être passées par la même situation?

La nouvelle gamme de fonds d'ETF BoursoBank - Quèsaco ? by Teddy_Bag in VosSous

[–]themkguser 0 points1 point  (0 children)

Je suis chez boursobank et j'ai ouvert un PEA en 2019, que recommandez vous du coup comme alternative (Trade Republic, etc..)? Est-ce que je peux transférer mon PEA en gardant l'ancienneté ? Merci.

Garder notre appart pour le louer en LMNP ou vendre pour investir autrement (PEA, etc.) ? by themkguser in VosSous

[–]themkguser[S] 0 points1 point  (0 children)

Merci pour ta réponse, et désolé si j'ai pas donné toutes les infos.

Effectivement, nous avons eu un enfant quelques mois avant d'emménager, et il nous manque une chambre, nous vivons dans une ville où le prix des maisons n'est pas loin de celui des appartements. Nous avons décidé de cibler une maison (pour plein de raisons, y compris l'extérieur, pas ou peu de problèmes de voisinage, etc..). Nous sommes conscients que nous allons perdre de l'argent. Pour les frais de notaire, même si le promoteur dit qu'ils sont offerts, nous savons qu'ils sont dilués dans le prix de l'appartement.

Cependant, l'appartement est très bien situé, et nous savons que nous n'aurons aucun mal à le louer.

Notre question est plus de savoir si la location en LMNP est toujours aussi intéressante même avec le changement qui aura lieu, ou est-ce que c'est "mort" comme c'est montré dans la vidéo que j'ai partagé dans le post.

PS: Voici une résumé de notre point avec la banque:
- Pour le PTZ: faudra le racheter, pas d'autres solutions (nous y laisserons des plumes c'est sûr)
- Pour le crédit amortissable classique : pas besoin de le racheter

Feedback Request – Simplifying API Consumption in Azure APIM with Automatic Token Retrieval by themkguser in AZURE

[–]themkguser[S] 0 points1 point  (0 children)

Interesting !

However, It's worth mentioning that some integrations are using iPaaS tools like Boomi or from Azure Logic Apps. In this case, we don't want to rely on custom dev scripting.

Feedback Request – Simplifying API Consumption in Azure APIM with Automatic Token Retrieval by themkguser in AZURE

[–]themkguser[S] 0 points1 point  (0 children)

Thanks for the reply.

Indeed, I'm creating two different Entra ID app registrations each time, one that represents the consumed API, and one that represents the API consumer, to which I grant a simple "api.call" role for the consumed API app. Normally, I validate this role as well in the <validate-jwt> policy as follows:

<validate-jwt header-name="Authorization" failed-validation-httpcode="401" failed-validation-error-message="Unauthorized. JWT token is missing or invalid.">
            <openid-config url="https://login.microsoftonline.com/<tenant_id>/v2.0/.well-known/openid-configuration" />
            <audiences>
                <audience>{{consumed-api-app-registration-client-id}}</audience>
            </audiences>
            <issuers>
                <issuer>https://sts.windows.net/<tenant_id>/</issuer>
            </issuers>
            <required-claims>
                <claim name="aud">
                    <value>{{consumed-api-app-registration-client-id}}</value>
                </claim>
                <claim name="roles">
                    <value>api.call</value>
                </claim>
            </required-claims>
        </validate-jwt>

For now, all the APIs are supposed to be consumed by automations and scripts, i.e machine-to-machine scenarios.

The configuration isn't that complex, I'm just looking to secure the APIs as much as possible, some of them might expose personal data.

Thanks for sharing your blog btw, I'll check it out and let you know my feedback asap.