index.html 253 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/mfa/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.14">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.342714a4.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/mfa/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. MFA
  430. </span>
  431. </a>
  432. </li>
  433. </ul>
  434. </nav>
  435. </li>
  436. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  437. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  438. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  439. <span class="md-ellipsis">
  440. Reference Docs
  441. </span>
  442. <span class="md-nav__icon md-icon"></span>
  443. </label>
  444. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  445. <label class="md-nav__title" for="__nav_2_4">
  446. <span class="md-nav__icon md-icon"></span>
  447. Reference Docs
  448. </label>
  449. <ul class="md-nav__list" data-md-scrollfix>
  450. <li class="md-nav__item md-nav__item--active">
  451. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  452. <a href="./" class="md-nav__link md-nav__link--active">
  453. <span class="md-ellipsis">
  454. API specification
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../controller-options/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Controller Options
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../metrics/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Metrics
  469. </span>
  470. </a>
  471. </li>
  472. </ul>
  473. </nav>
  474. </li>
  475. </ul>
  476. </nav>
  477. </li>
  478. <li class="md-nav__item md-nav__item--nested">
  479. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  480. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  481. <span class="md-ellipsis">
  482. Guides
  483. </span>
  484. <span class="md-nav__icon md-icon"></span>
  485. </label>
  486. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  487. <label class="md-nav__title" for="__nav_3">
  488. <span class="md-nav__icon md-icon"></span>
  489. Guides
  490. </label>
  491. <ul class="md-nav__list" data-md-scrollfix>
  492. <li class="md-nav__item">
  493. <a href="../../guides/introduction/" class="md-nav__link">
  494. <span class="md-ellipsis">
  495. Introduction
  496. </span>
  497. </a>
  498. </li>
  499. <li class="md-nav__item md-nav__item--nested">
  500. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  501. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  502. <span class="md-ellipsis">
  503. External Secrets
  504. </span>
  505. <span class="md-nav__icon md-icon"></span>
  506. </label>
  507. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  508. <label class="md-nav__title" for="__nav_3_2">
  509. <span class="md-nav__icon md-icon"></span>
  510. External Secrets
  511. </label>
  512. <ul class="md-nav__list" data-md-scrollfix>
  513. <li class="md-nav__item">
  514. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Extract structured data
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/getallsecrets/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Find Secrets by Name or Metadata
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Rewriting Keys
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item md-nav__item--nested">
  535. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  536. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  537. <span class="md-ellipsis">
  538. Advanced Templating
  539. </span>
  540. <span class="md-nav__icon md-icon"></span>
  541. </label>
  542. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  543. <label class="md-nav__title" for="__nav_3_2_4">
  544. <span class="md-nav__icon md-icon"></span>
  545. Advanced Templating
  546. </label>
  547. <ul class="md-nav__list" data-md-scrollfix>
  548. <li class="md-nav__item">
  549. <a href="../../guides/templating/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. v2
  552. </span>
  553. </a>
  554. </li>
  555. <li class="md-nav__item">
  556. <a href="../../guides/templating-v1/" class="md-nav__link">
  557. <span class="md-ellipsis">
  558. v1
  559. </span>
  560. </a>
  561. </li>
  562. </ul>
  563. </nav>
  564. </li>
  565. <li class="md-nav__item">
  566. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Kubernetes Secret Types
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Lifecycle: ownership & deletion
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Decoding Strategies
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/controller-class/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Controller Classes
  590. </span>
  591. </a>
  592. </li>
  593. </ul>
  594. </nav>
  595. </li>
  596. <li class="md-nav__item">
  597. <a href="../../guides/generator/" class="md-nav__link">
  598. <span class="md-ellipsis">
  599. Generators
  600. </span>
  601. </a>
  602. </li>
  603. <li class="md-nav__item">
  604. <a href="../../guides/pushsecrets/" class="md-nav__link">
  605. <span class="md-ellipsis">
  606. Push Secrets
  607. </span>
  608. </a>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  612. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  613. <span class="md-ellipsis">
  614. Operations
  615. </span>
  616. <span class="md-nav__icon md-icon"></span>
  617. </label>
  618. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  619. <label class="md-nav__title" for="__nav_3_5">
  620. <span class="md-nav__icon md-icon"></span>
  621. Operations
  622. </label>
  623. <ul class="md-nav__list" data-md-scrollfix>
  624. <li class="md-nav__item">
  625. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Multi Tenancy
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/security-best-practices/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Security Best Practices
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../guides/threat-model/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Threat Model
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/v1beta1/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Upgrading to v1beta1
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/using-latest-image/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Using Latest Image
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Disable Cluster Features
  663. </span>
  664. </a>
  665. </li>
  666. </ul>
  667. </nav>
  668. </li>
  669. <li class="md-nav__item md-nav__item--nested">
  670. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  671. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  672. <span class="md-ellipsis">
  673. Tooling
  674. </span>
  675. <span class="md-nav__icon md-icon"></span>
  676. </label>
  677. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  678. <label class="md-nav__title" for="__nav_3_6">
  679. <span class="md-nav__icon md-icon"></span>
  680. Tooling
  681. </label>
  682. <ul class="md-nav__list" data-md-scrollfix>
  683. <li class="md-nav__item">
  684. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  685. <span class="md-ellipsis">
  686. Using the esoctl tool
  687. </span>
  688. </a>
  689. </li>
  690. </ul>
  691. </nav>
  692. </li>
  693. </ul>
  694. </nav>
  695. </li>
  696. <li class="md-nav__item md-nav__item--nested">
  697. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  698. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  699. <span class="md-ellipsis">
  700. Provider
  701. </span>
  702. <span class="md-nav__icon md-icon"></span>
  703. </label>
  704. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  705. <label class="md-nav__title" for="__nav_4">
  706. <span class="md-nav__icon md-icon"></span>
  707. Provider
  708. </label>
  709. <ul class="md-nav__list" data-md-scrollfix>
  710. <li class="md-nav__item">
  711. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. AWS Secrets Manager
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. AWS Parameter Store
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. Azure Key Vault
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/beyondtrust/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. BeyondTrust
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Bitwarden Secrets Manager
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/chef/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Chef
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/cloudru/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Cloud.ru Secret Manager
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/conjur/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. CyberArk Conjur
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/device42/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Device42
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Google Cloud Secret Manager
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. HashiCorp Vault
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/kubernetes/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Kubernetes
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. IBM Secrets Manager
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/akeyless/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Akeyless
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Yandex Certificate Manager
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Yandex Lockbox
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/alibaba/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Alibaba Cloud
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. GitLab Variables
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/github/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Github Actions Secrets
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/oracle-vault/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. Oracle Vault
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/1password-automation/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. 1Password Connect Server
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/1password-sdk/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. 1Password SDK
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/webhook/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Webhook
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/fake/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. Fake
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. senhasegura DevOps Secrets Management (DSM)
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/doppler/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Doppler
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/keeper-security/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Keeper Security
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/cloak/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Cloak End 2 End Encrypted Secrets
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/scaleway/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Scaleway
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/delinea/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Delinea
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/secretserver/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Secret Server
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/passbolt/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Passbolt
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/pulumi/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Pulumi ESC
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/onboardbase/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Onboardbase
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider-passworddepot/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Password Depot
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/fortanix/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Fortanix
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/infisical/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Infisical
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/previder/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Previder
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/openbao/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. OpenBao
  980. </span>
  981. </a>
  982. </li>
  983. </ul>
  984. </nav>
  985. </li>
  986. <li class="md-nav__item md-nav__item--nested">
  987. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  988. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  989. <span class="md-ellipsis">
  990. Examples
  991. </span>
  992. <span class="md-nav__icon md-icon"></span>
  993. </label>
  994. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  995. <label class="md-nav__title" for="__nav_5">
  996. <span class="md-nav__icon md-icon"></span>
  997. Examples
  998. </label>
  999. <ul class="md-nav__list" data-md-scrollfix>
  1000. <li class="md-nav__item">
  1001. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1002. <span class="md-ellipsis">
  1003. FluxCD
  1004. </span>
  1005. </a>
  1006. </li>
  1007. <li class="md-nav__item">
  1008. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1009. <span class="md-ellipsis">
  1010. Anchore Engine
  1011. </span>
  1012. </a>
  1013. </li>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. Jenkins
  1018. </span>
  1019. </a>
  1020. </li>
  1021. <li class="md-nav__item">
  1022. <a href="../../examples/bitwarden/" class="md-nav__link">
  1023. <span class="md-ellipsis">
  1024. Bitwarden
  1025. </span>
  1026. </a>
  1027. </li>
  1028. </ul>
  1029. </nav>
  1030. </li>
  1031. <li class="md-nav__item md-nav__item--nested">
  1032. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1033. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1034. <span class="md-ellipsis">
  1035. Community
  1036. </span>
  1037. <span class="md-nav__icon md-icon"></span>
  1038. </label>
  1039. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1040. <label class="md-nav__title" for="__nav_6">
  1041. <span class="md-nav__icon md-icon"></span>
  1042. Community
  1043. </label>
  1044. <ul class="md-nav__list" data-md-scrollfix>
  1045. <li class="md-nav__item md-nav__item--nested">
  1046. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1047. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1048. <span class="md-ellipsis">
  1049. Contributing
  1050. </span>
  1051. <span class="md-nav__icon md-icon"></span>
  1052. </label>
  1053. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1054. <label class="md-nav__title" for="__nav_6_1">
  1055. <span class="md-nav__icon md-icon"></span>
  1056. Contributing
  1057. </label>
  1058. <ul class="md-nav__list" data-md-scrollfix>
  1059. <li class="md-nav__item">
  1060. <a href="../../contributing/devguide/" class="md-nav__link">
  1061. <span class="md-ellipsis">
  1062. Developer guide
  1063. </span>
  1064. </a>
  1065. </li>
  1066. <li class="md-nav__item">
  1067. <a href="../../contributing/process/" class="md-nav__link">
  1068. <span class="md-ellipsis">
  1069. Contributing Process
  1070. </span>
  1071. </a>
  1072. </li>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/release/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Release Process
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/coc/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Code of Conduct
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/calendar/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Community meetings calendar
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/roadmap/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Roadmap
  1098. </span>
  1099. </a>
  1100. </li>
  1101. </ul>
  1102. </nav>
  1103. </li>
  1104. <li class="md-nav__item md-nav__item--nested">
  1105. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1106. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1107. <span class="md-ellipsis">
  1108. External Resources
  1109. </span>
  1110. <span class="md-nav__icon md-icon"></span>
  1111. </label>
  1112. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1113. <label class="md-nav__title" for="__nav_6_2">
  1114. <span class="md-nav__icon md-icon"></span>
  1115. External Resources
  1116. </label>
  1117. <ul class="md-nav__list" data-md-scrollfix>
  1118. <li class="md-nav__item">
  1119. <a href="../../eso-talks/" class="md-nav__link">
  1120. <span class="md-ellipsis">
  1121. Talks
  1122. </span>
  1123. </a>
  1124. </li>
  1125. <li class="md-nav__item">
  1126. <a href="../../eso-demos/" class="md-nav__link">
  1127. <span class="md-ellipsis">
  1128. Demos
  1129. </span>
  1130. </a>
  1131. </li>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-blogs/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Blogs
  1136. </span>
  1137. </a>
  1138. </li>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-tools/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Tools
  1143. </span>
  1144. </a>
  1145. </li>
  1146. </ul>
  1147. </nav>
  1148. </li>
  1149. </ul>
  1150. </nav>
  1151. </li>
  1152. </ul>
  1153. </nav>
  1154. </div>
  1155. </div>
  1156. </div>
  1157. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1158. <div class="md-sidebar__scrollwrap">
  1159. <div class="md-sidebar__inner">
  1160. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1161. </nav>
  1162. </div>
  1163. </div>
  1164. </div>
  1165. <div class="md-content" data-md-component="content">
  1166. <article class="md-content__inner md-typeset">
  1167. <h1>API specification</h1>
  1168. <p>Packages:</p>
  1169. <ul>
  1170. <li>
  1171. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1172. </li>
  1173. </ul>
  1174. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1175. <p>
  1176. <p>Package v1 contains resources for external-secrets</p>
  1177. </p>
  1178. <p>Resource Types:</p>
  1179. <ul></ul>
  1180. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1181. </h3>
  1182. <p>
  1183. (<em>Appears on:</em>
  1184. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1185. </p>
  1186. <p>
  1187. <p>AWSAuth tells the controller how to do authentication with aws.
  1188. Only one of secretRef or jwt can be specified.
  1189. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1190. </p>
  1191. <table>
  1192. <thead>
  1193. <tr>
  1194. <th>Field</th>
  1195. <th>Description</th>
  1196. </tr>
  1197. </thead>
  1198. <tbody>
  1199. <tr>
  1200. <td>
  1201. <code>secretRef</code></br>
  1202. <em>
  1203. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1204. AWSAuthSecretRef
  1205. </a>
  1206. </em>
  1207. </td>
  1208. <td>
  1209. <em>(Optional)</em>
  1210. </td>
  1211. </tr>
  1212. <tr>
  1213. <td>
  1214. <code>jwt</code></br>
  1215. <em>
  1216. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1217. AWSJWTAuth
  1218. </a>
  1219. </em>
  1220. </td>
  1221. <td>
  1222. <em>(Optional)</em>
  1223. </td>
  1224. </tr>
  1225. </tbody>
  1226. </table>
  1227. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1228. </h3>
  1229. <p>
  1230. (<em>Appears on:</em>
  1231. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1232. </p>
  1233. <p>
  1234. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1235. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1236. </p>
  1237. <table>
  1238. <thead>
  1239. <tr>
  1240. <th>Field</th>
  1241. <th>Description</th>
  1242. </tr>
  1243. </thead>
  1244. <tbody>
  1245. <tr>
  1246. <td>
  1247. <code>accessKeyIDSecretRef</code></br>
  1248. <em>
  1249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1250. External Secrets meta/v1.SecretKeySelector
  1251. </a>
  1252. </em>
  1253. </td>
  1254. <td>
  1255. <p>The AccessKeyID is used for authentication</p>
  1256. </td>
  1257. </tr>
  1258. <tr>
  1259. <td>
  1260. <code>secretAccessKeySecretRef</code></br>
  1261. <em>
  1262. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1263. External Secrets meta/v1.SecretKeySelector
  1264. </a>
  1265. </em>
  1266. </td>
  1267. <td>
  1268. <p>The SecretAccessKey is used for authentication</p>
  1269. </td>
  1270. </tr>
  1271. <tr>
  1272. <td>
  1273. <code>sessionTokenSecretRef</code></br>
  1274. <em>
  1275. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1276. External Secrets meta/v1.SecretKeySelector
  1277. </a>
  1278. </em>
  1279. </td>
  1280. <td>
  1281. <p>The SessionToken used for authentication
  1282. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1283. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1284. </td>
  1285. </tr>
  1286. </tbody>
  1287. </table>
  1288. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1289. </h3>
  1290. <p>
  1291. (<em>Appears on:</em>
  1292. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1293. </p>
  1294. <p>
  1295. <p>Authenticate against AWS using service account tokens.</p>
  1296. </p>
  1297. <table>
  1298. <thead>
  1299. <tr>
  1300. <th>Field</th>
  1301. <th>Description</th>
  1302. </tr>
  1303. </thead>
  1304. <tbody>
  1305. <tr>
  1306. <td>
  1307. <code>serviceAccountRef</code></br>
  1308. <em>
  1309. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1310. External Secrets meta/v1.ServiceAccountSelector
  1311. </a>
  1312. </em>
  1313. </td>
  1314. <td>
  1315. </td>
  1316. </tr>
  1317. </tbody>
  1318. </table>
  1319. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1320. </h3>
  1321. <p>
  1322. (<em>Appears on:</em>
  1323. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1324. </p>
  1325. <p>
  1326. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1327. </p>
  1328. <table>
  1329. <thead>
  1330. <tr>
  1331. <th>Field</th>
  1332. <th>Description</th>
  1333. </tr>
  1334. </thead>
  1335. <tbody>
  1336. <tr>
  1337. <td>
  1338. <code>service</code></br>
  1339. <em>
  1340. <a href="#external-secrets.io/v1.AWSServiceType">
  1341. AWSServiceType
  1342. </a>
  1343. </em>
  1344. </td>
  1345. <td>
  1346. <p>Service defines which service should be used to fetch the secrets</p>
  1347. </td>
  1348. </tr>
  1349. <tr>
  1350. <td>
  1351. <code>auth</code></br>
  1352. <em>
  1353. <a href="#external-secrets.io/v1.AWSAuth">
  1354. AWSAuth
  1355. </a>
  1356. </em>
  1357. </td>
  1358. <td>
  1359. <em>(Optional)</em>
  1360. <p>Auth defines the information necessary to authenticate against AWS
  1361. if not set aws sdk will infer credentials from your environment
  1362. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1363. </td>
  1364. </tr>
  1365. <tr>
  1366. <td>
  1367. <code>role</code></br>
  1368. <em>
  1369. string
  1370. </em>
  1371. </td>
  1372. <td>
  1373. <em>(Optional)</em>
  1374. <p>Role is a Role ARN which the provider will assume</p>
  1375. </td>
  1376. </tr>
  1377. <tr>
  1378. <td>
  1379. <code>region</code></br>
  1380. <em>
  1381. string
  1382. </em>
  1383. </td>
  1384. <td>
  1385. <p>AWS Region to be used for the provider</p>
  1386. </td>
  1387. </tr>
  1388. <tr>
  1389. <td>
  1390. <code>additionalRoles</code></br>
  1391. <em>
  1392. []string
  1393. </em>
  1394. </td>
  1395. <td>
  1396. <em>(Optional)</em>
  1397. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1398. </td>
  1399. </tr>
  1400. <tr>
  1401. <td>
  1402. <code>externalID</code></br>
  1403. <em>
  1404. string
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <p>AWS External ID set on assumed IAM roles</p>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. <code>sessionTags</code></br>
  1414. <em>
  1415. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1416. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1417. </a>
  1418. </em>
  1419. </td>
  1420. <td>
  1421. <em>(Optional)</em>
  1422. <p>AWS STS assume role session tags</p>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td>
  1427. <code>secretsManager</code></br>
  1428. <em>
  1429. <a href="#external-secrets.io/v1.SecretsManager">
  1430. SecretsManager
  1431. </a>
  1432. </em>
  1433. </td>
  1434. <td>
  1435. <em>(Optional)</em>
  1436. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1437. </td>
  1438. </tr>
  1439. <tr>
  1440. <td>
  1441. <code>transitiveTagKeys</code></br>
  1442. <em>
  1443. []string
  1444. </em>
  1445. </td>
  1446. <td>
  1447. <em>(Optional)</em>
  1448. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1449. </td>
  1450. </tr>
  1451. <tr>
  1452. <td>
  1453. <code>prefix</code></br>
  1454. <em>
  1455. string
  1456. </em>
  1457. </td>
  1458. <td>
  1459. <em>(Optional)</em>
  1460. <p>Prefix adds a prefix to all retrieved values.</p>
  1461. </td>
  1462. </tr>
  1463. </tbody>
  1464. </table>
  1465. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1466. (<code>string</code> alias)</p></h3>
  1467. <p>
  1468. (<em>Appears on:</em>
  1469. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1470. </p>
  1471. <p>
  1472. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1473. </p>
  1474. <table>
  1475. <thead>
  1476. <tr>
  1477. <th>Value</th>
  1478. <th>Description</th>
  1479. </tr>
  1480. </thead>
  1481. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1482. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1483. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1484. </td>
  1485. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1486. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1487. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1488. </td>
  1489. </tr></tbody>
  1490. </table>
  1491. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1492. </h3>
  1493. <p>
  1494. (<em>Appears on:</em>
  1495. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1496. </p>
  1497. <p>
  1498. </p>
  1499. <table>
  1500. <thead>
  1501. <tr>
  1502. <th>Field</th>
  1503. <th>Description</th>
  1504. </tr>
  1505. </thead>
  1506. <tbody>
  1507. <tr>
  1508. <td>
  1509. <code>secretRef</code></br>
  1510. <em>
  1511. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1512. AkeylessAuthSecretRef
  1513. </a>
  1514. </em>
  1515. </td>
  1516. <td>
  1517. <em>(Optional)</em>
  1518. <p>Reference to a Secret that contains the details
  1519. to authenticate with Akeyless.</p>
  1520. </td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <code>kubernetesAuth</code></br>
  1525. <em>
  1526. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1527. AkeylessKubernetesAuth
  1528. </a>
  1529. </em>
  1530. </td>
  1531. <td>
  1532. <em>(Optional)</em>
  1533. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1534. token stored in the named Secret resource.</p>
  1535. </td>
  1536. </tr>
  1537. </tbody>
  1538. </table>
  1539. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1540. </h3>
  1541. <p>
  1542. (<em>Appears on:</em>
  1543. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1544. </p>
  1545. <p>
  1546. <p>AkeylessAuthSecretRef
  1547. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1548. </p>
  1549. <table>
  1550. <thead>
  1551. <tr>
  1552. <th>Field</th>
  1553. <th>Description</th>
  1554. </tr>
  1555. </thead>
  1556. <tbody>
  1557. <tr>
  1558. <td>
  1559. <code>accessID</code></br>
  1560. <em>
  1561. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1562. External Secrets meta/v1.SecretKeySelector
  1563. </a>
  1564. </em>
  1565. </td>
  1566. <td>
  1567. <p>The SecretAccessID is used for authentication</p>
  1568. </td>
  1569. </tr>
  1570. <tr>
  1571. <td>
  1572. <code>accessType</code></br>
  1573. <em>
  1574. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1575. External Secrets meta/v1.SecretKeySelector
  1576. </a>
  1577. </em>
  1578. </td>
  1579. <td>
  1580. </td>
  1581. </tr>
  1582. <tr>
  1583. <td>
  1584. <code>accessTypeParam</code></br>
  1585. <em>
  1586. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1587. External Secrets meta/v1.SecretKeySelector
  1588. </a>
  1589. </em>
  1590. </td>
  1591. <td>
  1592. </td>
  1593. </tr>
  1594. </tbody>
  1595. </table>
  1596. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1597. </h3>
  1598. <p>
  1599. (<em>Appears on:</em>
  1600. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1601. </p>
  1602. <p>
  1603. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1604. </p>
  1605. <table>
  1606. <thead>
  1607. <tr>
  1608. <th>Field</th>
  1609. <th>Description</th>
  1610. </tr>
  1611. </thead>
  1612. <tbody>
  1613. <tr>
  1614. <td>
  1615. <code>accessID</code></br>
  1616. <em>
  1617. string
  1618. </em>
  1619. </td>
  1620. <td>
  1621. <p>the Akeyless Kubernetes auth-method access-id</p>
  1622. </td>
  1623. </tr>
  1624. <tr>
  1625. <td>
  1626. <code>k8sConfName</code></br>
  1627. <em>
  1628. string
  1629. </em>
  1630. </td>
  1631. <td>
  1632. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1633. </td>
  1634. </tr>
  1635. <tr>
  1636. <td>
  1637. <code>serviceAccountRef</code></br>
  1638. <em>
  1639. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1640. External Secrets meta/v1.ServiceAccountSelector
  1641. </a>
  1642. </em>
  1643. </td>
  1644. <td>
  1645. <em>(Optional)</em>
  1646. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1647. If the service account is specified, the service account secret token JWT will be used
  1648. for authenticating with Akeyless. If the service account selector is not supplied,
  1649. the secretRef will be used instead.</p>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td>
  1654. <code>secretRef</code></br>
  1655. <em>
  1656. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1657. External Secrets meta/v1.SecretKeySelector
  1658. </a>
  1659. </em>
  1660. </td>
  1661. <td>
  1662. <em>(Optional)</em>
  1663. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1664. for authenticating with Akeyless. If a name is specified without a key,
  1665. <code>token</code> is the default. If one is not specified, the one bound to
  1666. the controller will be used.</p>
  1667. </td>
  1668. </tr>
  1669. </tbody>
  1670. </table>
  1671. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1672. </h3>
  1673. <p>
  1674. (<em>Appears on:</em>
  1675. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1676. </p>
  1677. <p>
  1678. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1679. </p>
  1680. <table>
  1681. <thead>
  1682. <tr>
  1683. <th>Field</th>
  1684. <th>Description</th>
  1685. </tr>
  1686. </thead>
  1687. <tbody>
  1688. <tr>
  1689. <td>
  1690. <code>akeylessGWApiURL</code></br>
  1691. <em>
  1692. string
  1693. </em>
  1694. </td>
  1695. <td>
  1696. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td>
  1701. <code>authSecretRef</code></br>
  1702. <em>
  1703. <a href="#external-secrets.io/v1.AkeylessAuth">
  1704. AkeylessAuth
  1705. </a>
  1706. </em>
  1707. </td>
  1708. <td>
  1709. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1710. </td>
  1711. </tr>
  1712. <tr>
  1713. <td>
  1714. <code>caBundle</code></br>
  1715. <em>
  1716. []byte
  1717. </em>
  1718. </td>
  1719. <td>
  1720. <em>(Optional)</em>
  1721. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1722. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1723. are used to validate the TLS connection.</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>caProvider</code></br>
  1729. <em>
  1730. <a href="#external-secrets.io/v1.CAProvider">
  1731. CAProvider
  1732. </a>
  1733. </em>
  1734. </td>
  1735. <td>
  1736. <em>(Optional)</em>
  1737. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1738. </td>
  1739. </tr>
  1740. </tbody>
  1741. </table>
  1742. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1743. </h3>
  1744. <p>
  1745. (<em>Appears on:</em>
  1746. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1747. </p>
  1748. <p>
  1749. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1750. </p>
  1751. <table>
  1752. <thead>
  1753. <tr>
  1754. <th>Field</th>
  1755. <th>Description</th>
  1756. </tr>
  1757. </thead>
  1758. <tbody>
  1759. <tr>
  1760. <td>
  1761. <code>secretRef</code></br>
  1762. <em>
  1763. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1764. AlibabaAuthSecretRef
  1765. </a>
  1766. </em>
  1767. </td>
  1768. <td>
  1769. <em>(Optional)</em>
  1770. </td>
  1771. </tr>
  1772. <tr>
  1773. <td>
  1774. <code>rrsa</code></br>
  1775. <em>
  1776. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1777. AlibabaRRSAAuth
  1778. </a>
  1779. </em>
  1780. </td>
  1781. <td>
  1782. <em>(Optional)</em>
  1783. </td>
  1784. </tr>
  1785. </tbody>
  1786. </table>
  1787. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1788. </h3>
  1789. <p>
  1790. (<em>Appears on:</em>
  1791. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1792. </p>
  1793. <p>
  1794. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1795. </p>
  1796. <table>
  1797. <thead>
  1798. <tr>
  1799. <th>Field</th>
  1800. <th>Description</th>
  1801. </tr>
  1802. </thead>
  1803. <tbody>
  1804. <tr>
  1805. <td>
  1806. <code>accessKeyIDSecretRef</code></br>
  1807. <em>
  1808. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1809. External Secrets meta/v1.SecretKeySelector
  1810. </a>
  1811. </em>
  1812. </td>
  1813. <td>
  1814. <p>The AccessKeyID is used for authentication</p>
  1815. </td>
  1816. </tr>
  1817. <tr>
  1818. <td>
  1819. <code>accessKeySecretSecretRef</code></br>
  1820. <em>
  1821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1822. External Secrets meta/v1.SecretKeySelector
  1823. </a>
  1824. </em>
  1825. </td>
  1826. <td>
  1827. <p>The AccessKeySecret is used for authentication</p>
  1828. </td>
  1829. </tr>
  1830. </tbody>
  1831. </table>
  1832. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1833. </h3>
  1834. <p>
  1835. (<em>Appears on:</em>
  1836. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1837. </p>
  1838. <p>
  1839. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1840. </p>
  1841. <table>
  1842. <thead>
  1843. <tr>
  1844. <th>Field</th>
  1845. <th>Description</th>
  1846. </tr>
  1847. </thead>
  1848. <tbody>
  1849. <tr>
  1850. <td>
  1851. <code>auth</code></br>
  1852. <em>
  1853. <a href="#external-secrets.io/v1.AlibabaAuth">
  1854. AlibabaAuth
  1855. </a>
  1856. </em>
  1857. </td>
  1858. <td>
  1859. </td>
  1860. </tr>
  1861. <tr>
  1862. <td>
  1863. <code>regionID</code></br>
  1864. <em>
  1865. string
  1866. </em>
  1867. </td>
  1868. <td>
  1869. <p>Alibaba Region to be used for the provider</p>
  1870. </td>
  1871. </tr>
  1872. </tbody>
  1873. </table>
  1874. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1875. </h3>
  1876. <p>
  1877. (<em>Appears on:</em>
  1878. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1879. </p>
  1880. <p>
  1881. <p>Authenticate against Alibaba using RRSA.</p>
  1882. </p>
  1883. <table>
  1884. <thead>
  1885. <tr>
  1886. <th>Field</th>
  1887. <th>Description</th>
  1888. </tr>
  1889. </thead>
  1890. <tbody>
  1891. <tr>
  1892. <td>
  1893. <code>oidcProviderArn</code></br>
  1894. <em>
  1895. string
  1896. </em>
  1897. </td>
  1898. <td>
  1899. </td>
  1900. </tr>
  1901. <tr>
  1902. <td>
  1903. <code>oidcTokenFilePath</code></br>
  1904. <em>
  1905. string
  1906. </em>
  1907. </td>
  1908. <td>
  1909. </td>
  1910. </tr>
  1911. <tr>
  1912. <td>
  1913. <code>roleArn</code></br>
  1914. <em>
  1915. string
  1916. </em>
  1917. </td>
  1918. <td>
  1919. </td>
  1920. </tr>
  1921. <tr>
  1922. <td>
  1923. <code>sessionName</code></br>
  1924. <em>
  1925. string
  1926. </em>
  1927. </td>
  1928. <td>
  1929. </td>
  1930. </tr>
  1931. </tbody>
  1932. </table>
  1933. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1934. </h3>
  1935. <p>
  1936. (<em>Appears on:</em>
  1937. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1938. </p>
  1939. <p>
  1940. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1941. </p>
  1942. <table>
  1943. <thead>
  1944. <tr>
  1945. <th>Field</th>
  1946. <th>Description</th>
  1947. </tr>
  1948. </thead>
  1949. <tbody>
  1950. <tr>
  1951. <td>
  1952. <code>ntlm</code></br>
  1953. <em>
  1954. <a href="#external-secrets.io/v1.NTLMProtocol">
  1955. NTLMProtocol
  1956. </a>
  1957. </em>
  1958. </td>
  1959. <td>
  1960. <em>(Optional)</em>
  1961. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1962. </td>
  1963. </tr>
  1964. </tbody>
  1965. </table>
  1966. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  1967. (<code>string</code> alias)</p></h3>
  1968. <p>
  1969. (<em>Appears on:</em>
  1970. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1971. </p>
  1972. <p>
  1973. <p>AuthType describes how to authenticate to the Azure Keyvault
  1974. Only one of the following auth types may be specified.
  1975. If none of the following auth type is specified, the default one
  1976. is ServicePrincipal.</p>
  1977. </p>
  1978. <table>
  1979. <thead>
  1980. <tr>
  1981. <th>Value</th>
  1982. <th>Description</th>
  1983. </tr>
  1984. </thead>
  1985. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1986. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1987. </td>
  1988. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1989. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1990. </td>
  1991. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1992. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1993. </td>
  1994. </tr></tbody>
  1995. </table>
  1996. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  1997. (<code>string</code> alias)</p></h3>
  1998. <p>
  1999. (<em>Appears on:</em>
  2000. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2001. </p>
  2002. <p>
  2003. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2004. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2005. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2006. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2007. </p>
  2008. <table>
  2009. <thead>
  2010. <tr>
  2011. <th>Value</th>
  2012. <th>Description</th>
  2013. </tr>
  2014. </thead>
  2015. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2016. <td></td>
  2017. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2018. <td></td>
  2019. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2020. <td></td>
  2021. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2022. <td></td>
  2023. </tr></tbody>
  2024. </table>
  2025. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2026. </h3>
  2027. <p>
  2028. (<em>Appears on:</em>
  2029. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2030. </p>
  2031. <p>
  2032. <p>Configuration used to authenticate with Azure.</p>
  2033. </p>
  2034. <table>
  2035. <thead>
  2036. <tr>
  2037. <th>Field</th>
  2038. <th>Description</th>
  2039. </tr>
  2040. </thead>
  2041. <tbody>
  2042. <tr>
  2043. <td>
  2044. <code>clientId</code></br>
  2045. <em>
  2046. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2047. External Secrets meta/v1.SecretKeySelector
  2048. </a>
  2049. </em>
  2050. </td>
  2051. <td>
  2052. <em>(Optional)</em>
  2053. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2054. </td>
  2055. </tr>
  2056. <tr>
  2057. <td>
  2058. <code>tenantId</code></br>
  2059. <em>
  2060. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2061. External Secrets meta/v1.SecretKeySelector
  2062. </a>
  2063. </em>
  2064. </td>
  2065. <td>
  2066. <em>(Optional)</em>
  2067. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2068. </td>
  2069. </tr>
  2070. <tr>
  2071. <td>
  2072. <code>clientSecret</code></br>
  2073. <em>
  2074. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2075. External Secrets meta/v1.SecretKeySelector
  2076. </a>
  2077. </em>
  2078. </td>
  2079. <td>
  2080. <em>(Optional)</em>
  2081. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2082. </td>
  2083. </tr>
  2084. <tr>
  2085. <td>
  2086. <code>clientCertificate</code></br>
  2087. <em>
  2088. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2089. External Secrets meta/v1.SecretKeySelector
  2090. </a>
  2091. </em>
  2092. </td>
  2093. <td>
  2094. <em>(Optional)</em>
  2095. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2096. </td>
  2097. </tr>
  2098. </tbody>
  2099. </table>
  2100. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2101. </h3>
  2102. <p>
  2103. (<em>Appears on:</em>
  2104. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2105. </p>
  2106. <p>
  2107. <p>Configures an store to sync secrets using Azure KV.</p>
  2108. </p>
  2109. <table>
  2110. <thead>
  2111. <tr>
  2112. <th>Field</th>
  2113. <th>Description</th>
  2114. </tr>
  2115. </thead>
  2116. <tbody>
  2117. <tr>
  2118. <td>
  2119. <code>authType</code></br>
  2120. <em>
  2121. <a href="#external-secrets.io/v1.AzureAuthType">
  2122. AzureAuthType
  2123. </a>
  2124. </em>
  2125. </td>
  2126. <td>
  2127. <em>(Optional)</em>
  2128. <p>Auth type defines how to authenticate to the keyvault service.
  2129. Valid values are:
  2130. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2131. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2132. </td>
  2133. </tr>
  2134. <tr>
  2135. <td>
  2136. <code>vaultUrl</code></br>
  2137. <em>
  2138. string
  2139. </em>
  2140. </td>
  2141. <td>
  2142. <p>Vault Url from which the secrets to be fetched from.</p>
  2143. </td>
  2144. </tr>
  2145. <tr>
  2146. <td>
  2147. <code>tenantId</code></br>
  2148. <em>
  2149. string
  2150. </em>
  2151. </td>
  2152. <td>
  2153. <em>(Optional)</em>
  2154. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2155. </td>
  2156. </tr>
  2157. <tr>
  2158. <td>
  2159. <code>environmentType</code></br>
  2160. <em>
  2161. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2162. AzureEnvironmentType
  2163. </a>
  2164. </em>
  2165. </td>
  2166. <td>
  2167. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2168. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2169. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2170. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2171. </td>
  2172. </tr>
  2173. <tr>
  2174. <td>
  2175. <code>authSecretRef</code></br>
  2176. <em>
  2177. <a href="#external-secrets.io/v1.AzureKVAuth">
  2178. AzureKVAuth
  2179. </a>
  2180. </em>
  2181. </td>
  2182. <td>
  2183. <em>(Optional)</em>
  2184. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2185. </td>
  2186. </tr>
  2187. <tr>
  2188. <td>
  2189. <code>serviceAccountRef</code></br>
  2190. <em>
  2191. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2192. External Secrets meta/v1.ServiceAccountSelector
  2193. </a>
  2194. </em>
  2195. </td>
  2196. <td>
  2197. <em>(Optional)</em>
  2198. <p>ServiceAccountRef specified the service account
  2199. that should be used when authenticating with WorkloadIdentity.</p>
  2200. </td>
  2201. </tr>
  2202. <tr>
  2203. <td>
  2204. <code>identityId</code></br>
  2205. <em>
  2206. string
  2207. </em>
  2208. </td>
  2209. <td>
  2210. <em>(Optional)</em>
  2211. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2212. </td>
  2213. </tr>
  2214. </tbody>
  2215. </table>
  2216. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2217. </h3>
  2218. <p>
  2219. (<em>Appears on:</em>
  2220. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2221. </p>
  2222. <p>
  2223. </p>
  2224. <table>
  2225. <thead>
  2226. <tr>
  2227. <th>Field</th>
  2228. <th>Description</th>
  2229. </tr>
  2230. </thead>
  2231. <tbody>
  2232. <tr>
  2233. <td>
  2234. <code>value</code></br>
  2235. <em>
  2236. string
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <em>(Optional)</em>
  2241. <p>Value can be specified directly to set a value without using a secret.</p>
  2242. </td>
  2243. </tr>
  2244. <tr>
  2245. <td>
  2246. <code>secretRef</code></br>
  2247. <em>
  2248. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2249. External Secrets meta/v1.SecretKeySelector
  2250. </a>
  2251. </em>
  2252. </td>
  2253. <td>
  2254. <em>(Optional)</em>
  2255. <p>SecretRef references a key in a secret that will be used as value.</p>
  2256. </td>
  2257. </tr>
  2258. </tbody>
  2259. </table>
  2260. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2261. </h3>
  2262. <p>
  2263. (<em>Appears on:</em>
  2264. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2265. </p>
  2266. <p>
  2267. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2268. </p>
  2269. <table>
  2270. <thead>
  2271. <tr>
  2272. <th>Field</th>
  2273. <th>Description</th>
  2274. </tr>
  2275. </thead>
  2276. <tbody>
  2277. <tr>
  2278. <td>
  2279. <code>apiKey</code></br>
  2280. <em>
  2281. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2282. BeyondTrustProviderSecretRef
  2283. </a>
  2284. </em>
  2285. </td>
  2286. <td>
  2287. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td>
  2292. <code>clientId</code></br>
  2293. <em>
  2294. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2295. BeyondTrustProviderSecretRef
  2296. </a>
  2297. </em>
  2298. </td>
  2299. <td>
  2300. <p>ClientID is the API OAuth Client ID.</p>
  2301. </td>
  2302. </tr>
  2303. <tr>
  2304. <td>
  2305. <code>clientSecret</code></br>
  2306. <em>
  2307. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2308. BeyondTrustProviderSecretRef
  2309. </a>
  2310. </em>
  2311. </td>
  2312. <td>
  2313. <p>ClientSecret is the API OAuth Client Secret.</p>
  2314. </td>
  2315. </tr>
  2316. <tr>
  2317. <td>
  2318. <code>certificate</code></br>
  2319. <em>
  2320. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2321. BeyondTrustProviderSecretRef
  2322. </a>
  2323. </em>
  2324. </td>
  2325. <td>
  2326. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2327. </td>
  2328. </tr>
  2329. <tr>
  2330. <td>
  2331. <code>certificateKey</code></br>
  2332. <em>
  2333. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2334. BeyondTrustProviderSecretRef
  2335. </a>
  2336. </em>
  2337. </td>
  2338. <td>
  2339. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2340. </td>
  2341. </tr>
  2342. </tbody>
  2343. </table>
  2344. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2345. </h3>
  2346. <p>
  2347. (<em>Appears on:</em>
  2348. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2349. </p>
  2350. <p>
  2351. </p>
  2352. <table>
  2353. <thead>
  2354. <tr>
  2355. <th>Field</th>
  2356. <th>Description</th>
  2357. </tr>
  2358. </thead>
  2359. <tbody>
  2360. <tr>
  2361. <td>
  2362. <code>auth</code></br>
  2363. <em>
  2364. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2365. BeyondtrustAuth
  2366. </a>
  2367. </em>
  2368. </td>
  2369. <td>
  2370. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2371. </td>
  2372. </tr>
  2373. <tr>
  2374. <td>
  2375. <code>server</code></br>
  2376. <em>
  2377. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2378. BeyondtrustServer
  2379. </a>
  2380. </em>
  2381. </td>
  2382. <td>
  2383. <p>Auth configures how API server works.</p>
  2384. </td>
  2385. </tr>
  2386. </tbody>
  2387. </table>
  2388. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2389. </h3>
  2390. <p>
  2391. (<em>Appears on:</em>
  2392. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2393. </p>
  2394. <p>
  2395. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2396. </p>
  2397. <table>
  2398. <thead>
  2399. <tr>
  2400. <th>Field</th>
  2401. <th>Description</th>
  2402. </tr>
  2403. </thead>
  2404. <tbody>
  2405. <tr>
  2406. <td>
  2407. <code>apiUrl</code></br>
  2408. <em>
  2409. string
  2410. </em>
  2411. </td>
  2412. <td>
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td>
  2417. <code>apiVersion</code></br>
  2418. <em>
  2419. string
  2420. </em>
  2421. </td>
  2422. <td>
  2423. </td>
  2424. </tr>
  2425. <tr>
  2426. <td>
  2427. <code>retrievalType</code></br>
  2428. <em>
  2429. string
  2430. </em>
  2431. </td>
  2432. <td>
  2433. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2434. </td>
  2435. </tr>
  2436. <tr>
  2437. <td>
  2438. <code>separator</code></br>
  2439. <em>
  2440. string
  2441. </em>
  2442. </td>
  2443. <td>
  2444. <p>A character that separates the folder names.</p>
  2445. </td>
  2446. </tr>
  2447. <tr>
  2448. <td>
  2449. <code>verifyCA</code></br>
  2450. <em>
  2451. bool
  2452. </em>
  2453. </td>
  2454. <td>
  2455. </td>
  2456. </tr>
  2457. <tr>
  2458. <td>
  2459. <code>clientTimeOutSeconds</code></br>
  2460. <em>
  2461. int
  2462. </em>
  2463. </td>
  2464. <td>
  2465. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2466. </td>
  2467. </tr>
  2468. </tbody>
  2469. </table>
  2470. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2471. </h3>
  2472. <p>
  2473. (<em>Appears on:</em>
  2474. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2475. </p>
  2476. <p>
  2477. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2478. </p>
  2479. <table>
  2480. <thead>
  2481. <tr>
  2482. <th>Field</th>
  2483. <th>Description</th>
  2484. </tr>
  2485. </thead>
  2486. <tbody>
  2487. <tr>
  2488. <td>
  2489. <code>secretRef</code></br>
  2490. <em>
  2491. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2492. BitwardenSecretsManagerSecretRef
  2493. </a>
  2494. </em>
  2495. </td>
  2496. <td>
  2497. </td>
  2498. </tr>
  2499. </tbody>
  2500. </table>
  2501. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2502. </h3>
  2503. <p>
  2504. (<em>Appears on:</em>
  2505. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2506. </p>
  2507. <p>
  2508. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2509. </p>
  2510. <table>
  2511. <thead>
  2512. <tr>
  2513. <th>Field</th>
  2514. <th>Description</th>
  2515. </tr>
  2516. </thead>
  2517. <tbody>
  2518. <tr>
  2519. <td>
  2520. <code>apiURL</code></br>
  2521. <em>
  2522. string
  2523. </em>
  2524. </td>
  2525. <td>
  2526. </td>
  2527. </tr>
  2528. <tr>
  2529. <td>
  2530. <code>identityURL</code></br>
  2531. <em>
  2532. string
  2533. </em>
  2534. </td>
  2535. <td>
  2536. </td>
  2537. </tr>
  2538. <tr>
  2539. <td>
  2540. <code>bitwardenServerSDKURL</code></br>
  2541. <em>
  2542. string
  2543. </em>
  2544. </td>
  2545. <td>
  2546. </td>
  2547. </tr>
  2548. <tr>
  2549. <td>
  2550. <code>caBundle</code></br>
  2551. <em>
  2552. string
  2553. </em>
  2554. </td>
  2555. <td>
  2556. <em>(Optional)</em>
  2557. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2558. can be performed.</p>
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td>
  2563. <code>caProvider</code></br>
  2564. <em>
  2565. <a href="#external-secrets.io/v1.CAProvider">
  2566. CAProvider
  2567. </a>
  2568. </em>
  2569. </td>
  2570. <td>
  2571. <em>(Optional)</em>
  2572. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2573. </td>
  2574. </tr>
  2575. <tr>
  2576. <td>
  2577. <code>organizationID</code></br>
  2578. <em>
  2579. string
  2580. </em>
  2581. </td>
  2582. <td>
  2583. <p>OrganizationID determines which organization this secret store manages.</p>
  2584. </td>
  2585. </tr>
  2586. <tr>
  2587. <td>
  2588. <code>projectID</code></br>
  2589. <em>
  2590. string
  2591. </em>
  2592. </td>
  2593. <td>
  2594. <p>ProjectID determines which project this secret store manages.</p>
  2595. </td>
  2596. </tr>
  2597. <tr>
  2598. <td>
  2599. <code>auth</code></br>
  2600. <em>
  2601. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2602. BitwardenSecretsManagerAuth
  2603. </a>
  2604. </em>
  2605. </td>
  2606. <td>
  2607. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2608. Make sure that the token being used has permissions on the given secret.</p>
  2609. </td>
  2610. </tr>
  2611. </tbody>
  2612. </table>
  2613. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2614. </h3>
  2615. <p>
  2616. (<em>Appears on:</em>
  2617. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2618. </p>
  2619. <p>
  2620. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2621. </p>
  2622. <table>
  2623. <thead>
  2624. <tr>
  2625. <th>Field</th>
  2626. <th>Description</th>
  2627. </tr>
  2628. </thead>
  2629. <tbody>
  2630. <tr>
  2631. <td>
  2632. <code>credentials</code></br>
  2633. <em>
  2634. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2635. External Secrets meta/v1.SecretKeySelector
  2636. </a>
  2637. </em>
  2638. </td>
  2639. <td>
  2640. <p>AccessToken used for the bitwarden instance.</p>
  2641. </td>
  2642. </tr>
  2643. </tbody>
  2644. </table>
  2645. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2646. </h3>
  2647. <p>
  2648. (<em>Appears on:</em>
  2649. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2650. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2651. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2652. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2653. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2654. </p>
  2655. <p>
  2656. <p>Used to provide custom certificate authority (CA) certificates
  2657. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2658. that contains a PEM-encoded certificate.</p>
  2659. </p>
  2660. <table>
  2661. <thead>
  2662. <tr>
  2663. <th>Field</th>
  2664. <th>Description</th>
  2665. </tr>
  2666. </thead>
  2667. <tbody>
  2668. <tr>
  2669. <td>
  2670. <code>type</code></br>
  2671. <em>
  2672. <a href="#external-secrets.io/v1.CAProviderType">
  2673. CAProviderType
  2674. </a>
  2675. </em>
  2676. </td>
  2677. <td>
  2678. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2679. </td>
  2680. </tr>
  2681. <tr>
  2682. <td>
  2683. <code>name</code></br>
  2684. <em>
  2685. string
  2686. </em>
  2687. </td>
  2688. <td>
  2689. <p>The name of the object located at the provider type.</p>
  2690. </td>
  2691. </tr>
  2692. <tr>
  2693. <td>
  2694. <code>key</code></br>
  2695. <em>
  2696. string
  2697. </em>
  2698. </td>
  2699. <td>
  2700. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2701. </td>
  2702. </tr>
  2703. <tr>
  2704. <td>
  2705. <code>namespace</code></br>
  2706. <em>
  2707. string
  2708. </em>
  2709. </td>
  2710. <td>
  2711. <em>(Optional)</em>
  2712. <p>The namespace the Provider type is in.
  2713. Can only be defined when used in a ClusterSecretStore.</p>
  2714. </td>
  2715. </tr>
  2716. </tbody>
  2717. </table>
  2718. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2719. (<code>string</code> alias)</p></h3>
  2720. <p>
  2721. (<em>Appears on:</em>
  2722. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2723. </p>
  2724. <p>
  2725. </p>
  2726. <table>
  2727. <thead>
  2728. <tr>
  2729. <th>Value</th>
  2730. <th>Description</th>
  2731. </tr>
  2732. </thead>
  2733. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2734. <td></td>
  2735. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2736. <td></td>
  2737. </tr></tbody>
  2738. </table>
  2739. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2740. </h3>
  2741. <p>
  2742. (<em>Appears on:</em>
  2743. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2744. </p>
  2745. <p>
  2746. <p>CSMAuth contains a secretRef for credentials.</p>
  2747. </p>
  2748. <table>
  2749. <thead>
  2750. <tr>
  2751. <th>Field</th>
  2752. <th>Description</th>
  2753. </tr>
  2754. </thead>
  2755. <tbody>
  2756. <tr>
  2757. <td>
  2758. <code>secretRef</code></br>
  2759. <em>
  2760. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2761. CSMAuthSecretRef
  2762. </a>
  2763. </em>
  2764. </td>
  2765. <td>
  2766. <em>(Optional)</em>
  2767. </td>
  2768. </tr>
  2769. </tbody>
  2770. </table>
  2771. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2772. </h3>
  2773. <p>
  2774. (<em>Appears on:</em>
  2775. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2776. </p>
  2777. <p>
  2778. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2779. </p>
  2780. <table>
  2781. <thead>
  2782. <tr>
  2783. <th>Field</th>
  2784. <th>Description</th>
  2785. </tr>
  2786. </thead>
  2787. <tbody>
  2788. <tr>
  2789. <td>
  2790. <code>accessKeyIDSecretRef</code></br>
  2791. <em>
  2792. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2793. External Secrets meta/v1.SecretKeySelector
  2794. </a>
  2795. </em>
  2796. </td>
  2797. <td>
  2798. <p>The AccessKeyID is used for authentication</p>
  2799. </td>
  2800. </tr>
  2801. <tr>
  2802. <td>
  2803. <code>accessKeySecretSecretRef</code></br>
  2804. <em>
  2805. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2806. External Secrets meta/v1.SecretKeySelector
  2807. </a>
  2808. </em>
  2809. </td>
  2810. <td>
  2811. <p>The AccessKeySecret is used for authentication</p>
  2812. </td>
  2813. </tr>
  2814. </tbody>
  2815. </table>
  2816. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2817. </h3>
  2818. <p>
  2819. (<em>Appears on:</em>
  2820. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2821. </p>
  2822. <p>
  2823. </p>
  2824. <table>
  2825. <thead>
  2826. <tr>
  2827. <th>Field</th>
  2828. <th>Description</th>
  2829. </tr>
  2830. </thead>
  2831. <tbody>
  2832. <tr>
  2833. <td>
  2834. <code>clientCert</code></br>
  2835. <em>
  2836. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2837. External Secrets meta/v1.SecretKeySelector
  2838. </a>
  2839. </em>
  2840. </td>
  2841. <td>
  2842. </td>
  2843. </tr>
  2844. <tr>
  2845. <td>
  2846. <code>clientKey</code></br>
  2847. <em>
  2848. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2849. External Secrets meta/v1.SecretKeySelector
  2850. </a>
  2851. </em>
  2852. </td>
  2853. <td>
  2854. </td>
  2855. </tr>
  2856. </tbody>
  2857. </table>
  2858. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  2859. </h3>
  2860. <p>
  2861. (<em>Appears on:</em>
  2862. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  2863. </p>
  2864. <p>
  2865. <p>ChefAuth contains a secretRef for credentials.</p>
  2866. </p>
  2867. <table>
  2868. <thead>
  2869. <tr>
  2870. <th>Field</th>
  2871. <th>Description</th>
  2872. </tr>
  2873. </thead>
  2874. <tbody>
  2875. <tr>
  2876. <td>
  2877. <code>secretRef</code></br>
  2878. <em>
  2879. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  2880. ChefAuthSecretRef
  2881. </a>
  2882. </em>
  2883. </td>
  2884. <td>
  2885. </td>
  2886. </tr>
  2887. </tbody>
  2888. </table>
  2889. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  2890. </h3>
  2891. <p>
  2892. (<em>Appears on:</em>
  2893. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  2894. </p>
  2895. <p>
  2896. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2897. </p>
  2898. <table>
  2899. <thead>
  2900. <tr>
  2901. <th>Field</th>
  2902. <th>Description</th>
  2903. </tr>
  2904. </thead>
  2905. <tbody>
  2906. <tr>
  2907. <td>
  2908. <code>privateKeySecretRef</code></br>
  2909. <em>
  2910. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2911. External Secrets meta/v1.SecretKeySelector
  2912. </a>
  2913. </em>
  2914. </td>
  2915. <td>
  2916. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2917. </td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  2922. </h3>
  2923. <p>
  2924. (<em>Appears on:</em>
  2925. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2926. </p>
  2927. <p>
  2928. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2929. </p>
  2930. <table>
  2931. <thead>
  2932. <tr>
  2933. <th>Field</th>
  2934. <th>Description</th>
  2935. </tr>
  2936. </thead>
  2937. <tbody>
  2938. <tr>
  2939. <td>
  2940. <code>auth</code></br>
  2941. <em>
  2942. <a href="#external-secrets.io/v1.ChefAuth">
  2943. ChefAuth
  2944. </a>
  2945. </em>
  2946. </td>
  2947. <td>
  2948. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2949. </td>
  2950. </tr>
  2951. <tr>
  2952. <td>
  2953. <code>username</code></br>
  2954. <em>
  2955. string
  2956. </em>
  2957. </td>
  2958. <td>
  2959. <p>UserName should be the user ID on the chef server</p>
  2960. </td>
  2961. </tr>
  2962. <tr>
  2963. <td>
  2964. <code>serverUrl</code></br>
  2965. <em>
  2966. string
  2967. </em>
  2968. </td>
  2969. <td>
  2970. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2971. </td>
  2972. </tr>
  2973. </tbody>
  2974. </table>
  2975. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  2976. </h3>
  2977. <p>
  2978. (<em>Appears on:</em>
  2979. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2980. </p>
  2981. <p>
  2982. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  2983. </p>
  2984. <table>
  2985. <thead>
  2986. <tr>
  2987. <th>Field</th>
  2988. <th>Description</th>
  2989. </tr>
  2990. </thead>
  2991. <tbody>
  2992. <tr>
  2993. <td>
  2994. <code>auth</code></br>
  2995. <em>
  2996. <a href="#external-secrets.io/v1.CSMAuth">
  2997. CSMAuth
  2998. </a>
  2999. </em>
  3000. </td>
  3001. <td>
  3002. </td>
  3003. </tr>
  3004. <tr>
  3005. <td>
  3006. <code>projectID</code></br>
  3007. <em>
  3008. string
  3009. </em>
  3010. </td>
  3011. <td>
  3012. <p>ProjectID is the project, which the secrets are stored in.</p>
  3013. </td>
  3014. </tr>
  3015. </tbody>
  3016. </table>
  3017. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3018. </h3>
  3019. <p>
  3020. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3021. </p>
  3022. <table>
  3023. <thead>
  3024. <tr>
  3025. <th>Field</th>
  3026. <th>Description</th>
  3027. </tr>
  3028. </thead>
  3029. <tbody>
  3030. <tr>
  3031. <td>
  3032. <code>metadata</code></br>
  3033. <em>
  3034. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3035. Kubernetes meta/v1.ObjectMeta
  3036. </a>
  3037. </em>
  3038. </td>
  3039. <td>
  3040. Refer to the Kubernetes API documentation for the fields of the
  3041. <code>metadata</code> field.
  3042. </td>
  3043. </tr>
  3044. <tr>
  3045. <td>
  3046. <code>spec</code></br>
  3047. <em>
  3048. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3049. ClusterExternalSecretSpec
  3050. </a>
  3051. </em>
  3052. </td>
  3053. <td>
  3054. <br/>
  3055. <br/>
  3056. <table>
  3057. <tr>
  3058. <td>
  3059. <code>externalSecretSpec</code></br>
  3060. <em>
  3061. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3062. ExternalSecretSpec
  3063. </a>
  3064. </em>
  3065. </td>
  3066. <td>
  3067. <p>The spec for the ExternalSecrets to be created</p>
  3068. </td>
  3069. </tr>
  3070. <tr>
  3071. <td>
  3072. <code>externalSecretName</code></br>
  3073. <em>
  3074. string
  3075. </em>
  3076. </td>
  3077. <td>
  3078. <em>(Optional)</em>
  3079. <p>The name of the external secrets to be created.
  3080. Defaults to the name of the ClusterExternalSecret</p>
  3081. </td>
  3082. </tr>
  3083. <tr>
  3084. <td>
  3085. <code>externalSecretMetadata</code></br>
  3086. <em>
  3087. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3088. ExternalSecretMetadata
  3089. </a>
  3090. </em>
  3091. </td>
  3092. <td>
  3093. <em>(Optional)</em>
  3094. <p>The metadata of the external secrets to be created</p>
  3095. </td>
  3096. </tr>
  3097. <tr>
  3098. <td>
  3099. <code>namespaceSelector</code></br>
  3100. <em>
  3101. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3102. Kubernetes meta/v1.LabelSelector
  3103. </a>
  3104. </em>
  3105. </td>
  3106. <td>
  3107. <em>(Optional)</em>
  3108. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3109. Deprecated: Use NamespaceSelectors instead.</p>
  3110. </td>
  3111. </tr>
  3112. <tr>
  3113. <td>
  3114. <code>namespaceSelectors</code></br>
  3115. <em>
  3116. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3117. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3118. </a>
  3119. </em>
  3120. </td>
  3121. <td>
  3122. <em>(Optional)</em>
  3123. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3124. </td>
  3125. </tr>
  3126. <tr>
  3127. <td>
  3128. <code>namespaces</code></br>
  3129. <em>
  3130. []string
  3131. </em>
  3132. </td>
  3133. <td>
  3134. <em>(Optional)</em>
  3135. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3136. Deprecated: Use NamespaceSelectors instead.</p>
  3137. </td>
  3138. </tr>
  3139. <tr>
  3140. <td>
  3141. <code>refreshTime</code></br>
  3142. <em>
  3143. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3144. Kubernetes meta/v1.Duration
  3145. </a>
  3146. </em>
  3147. </td>
  3148. <td>
  3149. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3150. </td>
  3151. </tr>
  3152. </table>
  3153. </td>
  3154. </tr>
  3155. <tr>
  3156. <td>
  3157. <code>status</code></br>
  3158. <em>
  3159. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3160. ClusterExternalSecretStatus
  3161. </a>
  3162. </em>
  3163. </td>
  3164. <td>
  3165. </td>
  3166. </tr>
  3167. </tbody>
  3168. </table>
  3169. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3170. (<code>string</code> alias)</p></h3>
  3171. <p>
  3172. (<em>Appears on:</em>
  3173. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3174. </p>
  3175. <p>
  3176. </p>
  3177. <table>
  3178. <thead>
  3179. <tr>
  3180. <th>Value</th>
  3181. <th>Description</th>
  3182. </tr>
  3183. </thead>
  3184. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3185. <td></td>
  3186. </tr></tbody>
  3187. </table>
  3188. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3189. </h3>
  3190. <p>
  3191. (<em>Appears on:</em>
  3192. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3193. </p>
  3194. <p>
  3195. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3196. </p>
  3197. <table>
  3198. <thead>
  3199. <tr>
  3200. <th>Field</th>
  3201. <th>Description</th>
  3202. </tr>
  3203. </thead>
  3204. <tbody>
  3205. <tr>
  3206. <td>
  3207. <code>namespace</code></br>
  3208. <em>
  3209. string
  3210. </em>
  3211. </td>
  3212. <td>
  3213. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3214. </td>
  3215. </tr>
  3216. <tr>
  3217. <td>
  3218. <code>reason</code></br>
  3219. <em>
  3220. string
  3221. </em>
  3222. </td>
  3223. <td>
  3224. <em>(Optional)</em>
  3225. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3226. </td>
  3227. </tr>
  3228. </tbody>
  3229. </table>
  3230. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3231. </h3>
  3232. <p>
  3233. (<em>Appears on:</em>
  3234. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3235. </p>
  3236. <p>
  3237. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3238. </p>
  3239. <table>
  3240. <thead>
  3241. <tr>
  3242. <th>Field</th>
  3243. <th>Description</th>
  3244. </tr>
  3245. </thead>
  3246. <tbody>
  3247. <tr>
  3248. <td>
  3249. <code>externalSecretSpec</code></br>
  3250. <em>
  3251. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3252. ExternalSecretSpec
  3253. </a>
  3254. </em>
  3255. </td>
  3256. <td>
  3257. <p>The spec for the ExternalSecrets to be created</p>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td>
  3262. <code>externalSecretName</code></br>
  3263. <em>
  3264. string
  3265. </em>
  3266. </td>
  3267. <td>
  3268. <em>(Optional)</em>
  3269. <p>The name of the external secrets to be created.
  3270. Defaults to the name of the ClusterExternalSecret</p>
  3271. </td>
  3272. </tr>
  3273. <tr>
  3274. <td>
  3275. <code>externalSecretMetadata</code></br>
  3276. <em>
  3277. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3278. ExternalSecretMetadata
  3279. </a>
  3280. </em>
  3281. </td>
  3282. <td>
  3283. <em>(Optional)</em>
  3284. <p>The metadata of the external secrets to be created</p>
  3285. </td>
  3286. </tr>
  3287. <tr>
  3288. <td>
  3289. <code>namespaceSelector</code></br>
  3290. <em>
  3291. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3292. Kubernetes meta/v1.LabelSelector
  3293. </a>
  3294. </em>
  3295. </td>
  3296. <td>
  3297. <em>(Optional)</em>
  3298. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3299. Deprecated: Use NamespaceSelectors instead.</p>
  3300. </td>
  3301. </tr>
  3302. <tr>
  3303. <td>
  3304. <code>namespaceSelectors</code></br>
  3305. <em>
  3306. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3307. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3308. </a>
  3309. </em>
  3310. </td>
  3311. <td>
  3312. <em>(Optional)</em>
  3313. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3314. </td>
  3315. </tr>
  3316. <tr>
  3317. <td>
  3318. <code>namespaces</code></br>
  3319. <em>
  3320. []string
  3321. </em>
  3322. </td>
  3323. <td>
  3324. <em>(Optional)</em>
  3325. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3326. Deprecated: Use NamespaceSelectors instead.</p>
  3327. </td>
  3328. </tr>
  3329. <tr>
  3330. <td>
  3331. <code>refreshTime</code></br>
  3332. <em>
  3333. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3334. Kubernetes meta/v1.Duration
  3335. </a>
  3336. </em>
  3337. </td>
  3338. <td>
  3339. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3340. </td>
  3341. </tr>
  3342. </tbody>
  3343. </table>
  3344. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3345. </h3>
  3346. <p>
  3347. (<em>Appears on:</em>
  3348. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3349. </p>
  3350. <p>
  3351. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3352. </p>
  3353. <table>
  3354. <thead>
  3355. <tr>
  3356. <th>Field</th>
  3357. <th>Description</th>
  3358. </tr>
  3359. </thead>
  3360. <tbody>
  3361. <tr>
  3362. <td>
  3363. <code>externalSecretName</code></br>
  3364. <em>
  3365. string
  3366. </em>
  3367. </td>
  3368. <td>
  3369. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3370. </td>
  3371. </tr>
  3372. <tr>
  3373. <td>
  3374. <code>failedNamespaces</code></br>
  3375. <em>
  3376. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3377. []ClusterExternalSecretNamespaceFailure
  3378. </a>
  3379. </em>
  3380. </td>
  3381. <td>
  3382. <em>(Optional)</em>
  3383. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3384. </td>
  3385. </tr>
  3386. <tr>
  3387. <td>
  3388. <code>provisionedNamespaces</code></br>
  3389. <em>
  3390. []string
  3391. </em>
  3392. </td>
  3393. <td>
  3394. <em>(Optional)</em>
  3395. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3396. </td>
  3397. </tr>
  3398. <tr>
  3399. <td>
  3400. <code>conditions</code></br>
  3401. <em>
  3402. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3403. []ClusterExternalSecretStatusCondition
  3404. </a>
  3405. </em>
  3406. </td>
  3407. <td>
  3408. <em>(Optional)</em>
  3409. </td>
  3410. </tr>
  3411. </tbody>
  3412. </table>
  3413. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3414. </h3>
  3415. <p>
  3416. (<em>Appears on:</em>
  3417. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3418. </p>
  3419. <p>
  3420. </p>
  3421. <table>
  3422. <thead>
  3423. <tr>
  3424. <th>Field</th>
  3425. <th>Description</th>
  3426. </tr>
  3427. </thead>
  3428. <tbody>
  3429. <tr>
  3430. <td>
  3431. <code>type</code></br>
  3432. <em>
  3433. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3434. ClusterExternalSecretConditionType
  3435. </a>
  3436. </em>
  3437. </td>
  3438. <td>
  3439. </td>
  3440. </tr>
  3441. <tr>
  3442. <td>
  3443. <code>status</code></br>
  3444. <em>
  3445. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3446. Kubernetes core/v1.ConditionStatus
  3447. </a>
  3448. </em>
  3449. </td>
  3450. <td>
  3451. </td>
  3452. </tr>
  3453. <tr>
  3454. <td>
  3455. <code>message</code></br>
  3456. <em>
  3457. string
  3458. </em>
  3459. </td>
  3460. <td>
  3461. <em>(Optional)</em>
  3462. </td>
  3463. </tr>
  3464. </tbody>
  3465. </table>
  3466. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3467. </h3>
  3468. <p>
  3469. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3470. </p>
  3471. <table>
  3472. <thead>
  3473. <tr>
  3474. <th>Field</th>
  3475. <th>Description</th>
  3476. </tr>
  3477. </thead>
  3478. <tbody>
  3479. <tr>
  3480. <td>
  3481. <code>metadata</code></br>
  3482. <em>
  3483. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3484. Kubernetes meta/v1.ObjectMeta
  3485. </a>
  3486. </em>
  3487. </td>
  3488. <td>
  3489. Refer to the Kubernetes API documentation for the fields of the
  3490. <code>metadata</code> field.
  3491. </td>
  3492. </tr>
  3493. <tr>
  3494. <td>
  3495. <code>spec</code></br>
  3496. <em>
  3497. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3498. SecretStoreSpec
  3499. </a>
  3500. </em>
  3501. </td>
  3502. <td>
  3503. <br/>
  3504. <br/>
  3505. <table>
  3506. <tr>
  3507. <td>
  3508. <code>controller</code></br>
  3509. <em>
  3510. string
  3511. </em>
  3512. </td>
  3513. <td>
  3514. <em>(Optional)</em>
  3515. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3516. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3517. </td>
  3518. </tr>
  3519. <tr>
  3520. <td>
  3521. <code>provider</code></br>
  3522. <em>
  3523. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3524. SecretStoreProvider
  3525. </a>
  3526. </em>
  3527. </td>
  3528. <td>
  3529. <p>Used to configure the provider. Only one provider may be set</p>
  3530. </td>
  3531. </tr>
  3532. <tr>
  3533. <td>
  3534. <code>retrySettings</code></br>
  3535. <em>
  3536. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3537. SecretStoreRetrySettings
  3538. </a>
  3539. </em>
  3540. </td>
  3541. <td>
  3542. <em>(Optional)</em>
  3543. <p>Used to configure http retries if failed</p>
  3544. </td>
  3545. </tr>
  3546. <tr>
  3547. <td>
  3548. <code>refreshInterval</code></br>
  3549. <em>
  3550. int
  3551. </em>
  3552. </td>
  3553. <td>
  3554. <em>(Optional)</em>
  3555. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3556. </td>
  3557. </tr>
  3558. <tr>
  3559. <td>
  3560. <code>conditions</code></br>
  3561. <em>
  3562. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3563. []ClusterSecretStoreCondition
  3564. </a>
  3565. </em>
  3566. </td>
  3567. <td>
  3568. <em>(Optional)</em>
  3569. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3570. </td>
  3571. </tr>
  3572. </table>
  3573. </td>
  3574. </tr>
  3575. <tr>
  3576. <td>
  3577. <code>status</code></br>
  3578. <em>
  3579. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3580. SecretStoreStatus
  3581. </a>
  3582. </em>
  3583. </td>
  3584. <td>
  3585. </td>
  3586. </tr>
  3587. </tbody>
  3588. </table>
  3589. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3590. </h3>
  3591. <p>
  3592. (<em>Appears on:</em>
  3593. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3594. </p>
  3595. <p>
  3596. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3597. for a ClusterSecretStore instance.</p>
  3598. </p>
  3599. <table>
  3600. <thead>
  3601. <tr>
  3602. <th>Field</th>
  3603. <th>Description</th>
  3604. </tr>
  3605. </thead>
  3606. <tbody>
  3607. <tr>
  3608. <td>
  3609. <code>namespaceSelector</code></br>
  3610. <em>
  3611. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3612. Kubernetes meta/v1.LabelSelector
  3613. </a>
  3614. </em>
  3615. </td>
  3616. <td>
  3617. <em>(Optional)</em>
  3618. <p>Choose namespace using a labelSelector</p>
  3619. </td>
  3620. </tr>
  3621. <tr>
  3622. <td>
  3623. <code>namespaces</code></br>
  3624. <em>
  3625. []string
  3626. </em>
  3627. </td>
  3628. <td>
  3629. <em>(Optional)</em>
  3630. <p>Choose namespaces by name</p>
  3631. </td>
  3632. </tr>
  3633. <tr>
  3634. <td>
  3635. <code>namespaceRegexes</code></br>
  3636. <em>
  3637. []string
  3638. </em>
  3639. </td>
  3640. <td>
  3641. <em>(Optional)</em>
  3642. <p>Choose namespaces by using regex matching</p>
  3643. </td>
  3644. </tr>
  3645. </tbody>
  3646. </table>
  3647. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3648. </h3>
  3649. <p>
  3650. (<em>Appears on:</em>
  3651. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3652. </p>
  3653. <p>
  3654. </p>
  3655. <table>
  3656. <thead>
  3657. <tr>
  3658. <th>Field</th>
  3659. <th>Description</th>
  3660. </tr>
  3661. </thead>
  3662. <tbody>
  3663. <tr>
  3664. <td>
  3665. <code>account</code></br>
  3666. <em>
  3667. string
  3668. </em>
  3669. </td>
  3670. <td>
  3671. <p>Account is the Conjur organization account name.</p>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td>
  3676. <code>userRef</code></br>
  3677. <em>
  3678. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3679. External Secrets meta/v1.SecretKeySelector
  3680. </a>
  3681. </em>
  3682. </td>
  3683. <td>
  3684. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3685. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3686. </td>
  3687. </tr>
  3688. <tr>
  3689. <td>
  3690. <code>apiKeyRef</code></br>
  3691. <em>
  3692. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3693. External Secrets meta/v1.SecretKeySelector
  3694. </a>
  3695. </em>
  3696. </td>
  3697. <td>
  3698. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3699. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3700. </td>
  3701. </tr>
  3702. </tbody>
  3703. </table>
  3704. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3705. </h3>
  3706. <p>
  3707. (<em>Appears on:</em>
  3708. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3709. </p>
  3710. <p>
  3711. </p>
  3712. <table>
  3713. <thead>
  3714. <tr>
  3715. <th>Field</th>
  3716. <th>Description</th>
  3717. </tr>
  3718. </thead>
  3719. <tbody>
  3720. <tr>
  3721. <td>
  3722. <code>apikey</code></br>
  3723. <em>
  3724. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3725. ConjurAPIKey
  3726. </a>
  3727. </em>
  3728. </td>
  3729. <td>
  3730. <em>(Optional)</em>
  3731. <p>Authenticates with Conjur using an API key.</p>
  3732. </td>
  3733. </tr>
  3734. <tr>
  3735. <td>
  3736. <code>jwt</code></br>
  3737. <em>
  3738. <a href="#external-secrets.io/v1.ConjurJWT">
  3739. ConjurJWT
  3740. </a>
  3741. </em>
  3742. </td>
  3743. <td>
  3744. <em>(Optional)</em>
  3745. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3746. </td>
  3747. </tr>
  3748. </tbody>
  3749. </table>
  3750. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3751. </h3>
  3752. <p>
  3753. (<em>Appears on:</em>
  3754. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3755. </p>
  3756. <p>
  3757. </p>
  3758. <table>
  3759. <thead>
  3760. <tr>
  3761. <th>Field</th>
  3762. <th>Description</th>
  3763. </tr>
  3764. </thead>
  3765. <tbody>
  3766. <tr>
  3767. <td>
  3768. <code>account</code></br>
  3769. <em>
  3770. string
  3771. </em>
  3772. </td>
  3773. <td>
  3774. <p>Account is the Conjur organization account name.</p>
  3775. </td>
  3776. </tr>
  3777. <tr>
  3778. <td>
  3779. <code>serviceID</code></br>
  3780. <em>
  3781. string
  3782. </em>
  3783. </td>
  3784. <td>
  3785. <p>The conjur authn jwt webservice id</p>
  3786. </td>
  3787. </tr>
  3788. <tr>
  3789. <td>
  3790. <code>hostId</code></br>
  3791. <em>
  3792. string
  3793. </em>
  3794. </td>
  3795. <td>
  3796. <em>(Optional)</em>
  3797. <p>Optional HostID for JWT authentication. This may be used depending
  3798. on how the Conjur JWT authenticator policy is configured.</p>
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td>
  3803. <code>secretRef</code></br>
  3804. <em>
  3805. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3806. External Secrets meta/v1.SecretKeySelector
  3807. </a>
  3808. </em>
  3809. </td>
  3810. <td>
  3811. <em>(Optional)</em>
  3812. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3813. authenticate with Conjur using the JWT authentication method.</p>
  3814. </td>
  3815. </tr>
  3816. <tr>
  3817. <td>
  3818. <code>serviceAccountRef</code></br>
  3819. <em>
  3820. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3821. External Secrets meta/v1.ServiceAccountSelector
  3822. </a>
  3823. </em>
  3824. </td>
  3825. <td>
  3826. <em>(Optional)</em>
  3827. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3828. a token for with the <code>TokenRequest</code> API.</p>
  3829. </td>
  3830. </tr>
  3831. </tbody>
  3832. </table>
  3833. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  3834. </h3>
  3835. <p>
  3836. (<em>Appears on:</em>
  3837. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3838. </p>
  3839. <p>
  3840. </p>
  3841. <table>
  3842. <thead>
  3843. <tr>
  3844. <th>Field</th>
  3845. <th>Description</th>
  3846. </tr>
  3847. </thead>
  3848. <tbody>
  3849. <tr>
  3850. <td>
  3851. <code>url</code></br>
  3852. <em>
  3853. string
  3854. </em>
  3855. </td>
  3856. <td>
  3857. <p>URL is the endpoint of the Conjur instance.</p>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td>
  3862. <code>caBundle</code></br>
  3863. <em>
  3864. string
  3865. </em>
  3866. </td>
  3867. <td>
  3868. <em>(Optional)</em>
  3869. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  3870. </td>
  3871. </tr>
  3872. <tr>
  3873. <td>
  3874. <code>caProvider</code></br>
  3875. <em>
  3876. <a href="#external-secrets.io/v1.CAProvider">
  3877. CAProvider
  3878. </a>
  3879. </em>
  3880. </td>
  3881. <td>
  3882. <em>(Optional)</em>
  3883. <p>Used to provide custom certificate authority (CA) certificates
  3884. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  3885. that contains a PEM-encoded certificate.</p>
  3886. </td>
  3887. </tr>
  3888. <tr>
  3889. <td>
  3890. <code>auth</code></br>
  3891. <em>
  3892. <a href="#external-secrets.io/v1.ConjurAuth">
  3893. ConjurAuth
  3894. </a>
  3895. </em>
  3896. </td>
  3897. <td>
  3898. <p>Defines authentication settings for connecting to Conjur.</p>
  3899. </td>
  3900. </tr>
  3901. </tbody>
  3902. </table>
  3903. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  3904. </h3>
  3905. <p>
  3906. (<em>Appears on:</em>
  3907. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3908. </p>
  3909. <p>
  3910. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3911. </p>
  3912. <table>
  3913. <thead>
  3914. <tr>
  3915. <th>Field</th>
  3916. <th>Description</th>
  3917. </tr>
  3918. </thead>
  3919. <tbody>
  3920. <tr>
  3921. <td>
  3922. <code>clientId</code></br>
  3923. <em>
  3924. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3925. DelineaProviderSecretRef
  3926. </a>
  3927. </em>
  3928. </td>
  3929. <td>
  3930. <p>ClientID is the non-secret part of the credential.</p>
  3931. </td>
  3932. </tr>
  3933. <tr>
  3934. <td>
  3935. <code>clientSecret</code></br>
  3936. <em>
  3937. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3938. DelineaProviderSecretRef
  3939. </a>
  3940. </em>
  3941. </td>
  3942. <td>
  3943. <p>ClientSecret is the secret part of the credential.</p>
  3944. </td>
  3945. </tr>
  3946. <tr>
  3947. <td>
  3948. <code>tenant</code></br>
  3949. <em>
  3950. string
  3951. </em>
  3952. </td>
  3953. <td>
  3954. <p>Tenant is the chosen hostname / site name.</p>
  3955. </td>
  3956. </tr>
  3957. <tr>
  3958. <td>
  3959. <code>urlTemplate</code></br>
  3960. <em>
  3961. string
  3962. </em>
  3963. </td>
  3964. <td>
  3965. <em>(Optional)</em>
  3966. <p>URLTemplate
  3967. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3968. </td>
  3969. </tr>
  3970. <tr>
  3971. <td>
  3972. <code>tld</code></br>
  3973. <em>
  3974. string
  3975. </em>
  3976. </td>
  3977. <td>
  3978. <em>(Optional)</em>
  3979. <p>TLD is based on the server location that was chosen during provisioning.
  3980. If unset, defaults to &ldquo;com&rdquo;.</p>
  3981. </td>
  3982. </tr>
  3983. </tbody>
  3984. </table>
  3985. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3986. </h3>
  3987. <p>
  3988. (<em>Appears on:</em>
  3989. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  3990. </p>
  3991. <p>
  3992. </p>
  3993. <table>
  3994. <thead>
  3995. <tr>
  3996. <th>Field</th>
  3997. <th>Description</th>
  3998. </tr>
  3999. </thead>
  4000. <tbody>
  4001. <tr>
  4002. <td>
  4003. <code>value</code></br>
  4004. <em>
  4005. string
  4006. </em>
  4007. </td>
  4008. <td>
  4009. <em>(Optional)</em>
  4010. <p>Value can be specified directly to set a value without using a secret.</p>
  4011. </td>
  4012. </tr>
  4013. <tr>
  4014. <td>
  4015. <code>secretRef</code></br>
  4016. <em>
  4017. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4018. External Secrets meta/v1.SecretKeySelector
  4019. </a>
  4020. </em>
  4021. </td>
  4022. <td>
  4023. <em>(Optional)</em>
  4024. <p>SecretRef references a key in a secret that will be used as value.</p>
  4025. </td>
  4026. </tr>
  4027. </tbody>
  4028. </table>
  4029. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4030. </h3>
  4031. <p>
  4032. (<em>Appears on:</em>
  4033. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4034. </p>
  4035. <p>
  4036. </p>
  4037. <table>
  4038. <thead>
  4039. <tr>
  4040. <th>Field</th>
  4041. <th>Description</th>
  4042. </tr>
  4043. </thead>
  4044. <tbody>
  4045. <tr>
  4046. <td>
  4047. <code>secretRef</code></br>
  4048. <em>
  4049. <a href="#external-secrets.io/v1.Device42SecretRef">
  4050. Device42SecretRef
  4051. </a>
  4052. </em>
  4053. </td>
  4054. <td>
  4055. </td>
  4056. </tr>
  4057. </tbody>
  4058. </table>
  4059. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4060. </h3>
  4061. <p>
  4062. (<em>Appears on:</em>
  4063. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4064. </p>
  4065. <p>
  4066. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4067. </p>
  4068. <table>
  4069. <thead>
  4070. <tr>
  4071. <th>Field</th>
  4072. <th>Description</th>
  4073. </tr>
  4074. </thead>
  4075. <tbody>
  4076. <tr>
  4077. <td>
  4078. <code>host</code></br>
  4079. <em>
  4080. string
  4081. </em>
  4082. </td>
  4083. <td>
  4084. <p>URL configures the Device42 instance URL.</p>
  4085. </td>
  4086. </tr>
  4087. <tr>
  4088. <td>
  4089. <code>auth</code></br>
  4090. <em>
  4091. <a href="#external-secrets.io/v1.Device42Auth">
  4092. Device42Auth
  4093. </a>
  4094. </em>
  4095. </td>
  4096. <td>
  4097. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4098. </td>
  4099. </tr>
  4100. </tbody>
  4101. </table>
  4102. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4103. </h3>
  4104. <p>
  4105. (<em>Appears on:</em>
  4106. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4107. </p>
  4108. <p>
  4109. </p>
  4110. <table>
  4111. <thead>
  4112. <tr>
  4113. <th>Field</th>
  4114. <th>Description</th>
  4115. </tr>
  4116. </thead>
  4117. <tbody>
  4118. <tr>
  4119. <td>
  4120. <code>credentials</code></br>
  4121. <em>
  4122. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4123. External Secrets meta/v1.SecretKeySelector
  4124. </a>
  4125. </em>
  4126. </td>
  4127. <td>
  4128. <em>(Optional)</em>
  4129. <p>Username / Password is used for authentication.</p>
  4130. </td>
  4131. </tr>
  4132. </tbody>
  4133. </table>
  4134. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4135. </h3>
  4136. <p>
  4137. (<em>Appears on:</em>
  4138. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4139. </p>
  4140. <p>
  4141. </p>
  4142. <table>
  4143. <thead>
  4144. <tr>
  4145. <th>Field</th>
  4146. <th>Description</th>
  4147. </tr>
  4148. </thead>
  4149. <tbody>
  4150. <tr>
  4151. <td>
  4152. <code>secretRef</code></br>
  4153. <em>
  4154. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4155. DopplerAuthSecretRef
  4156. </a>
  4157. </em>
  4158. </td>
  4159. <td>
  4160. </td>
  4161. </tr>
  4162. </tbody>
  4163. </table>
  4164. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4165. </h3>
  4166. <p>
  4167. (<em>Appears on:</em>
  4168. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4169. </p>
  4170. <p>
  4171. </p>
  4172. <table>
  4173. <thead>
  4174. <tr>
  4175. <th>Field</th>
  4176. <th>Description</th>
  4177. </tr>
  4178. </thead>
  4179. <tbody>
  4180. <tr>
  4181. <td>
  4182. <code>dopplerToken</code></br>
  4183. <em>
  4184. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4185. External Secrets meta/v1.SecretKeySelector
  4186. </a>
  4187. </em>
  4188. </td>
  4189. <td>
  4190. <p>The DopplerToken is used for authentication.
  4191. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4192. The Key attribute defaults to dopplerToken if not specified.</p>
  4193. </td>
  4194. </tr>
  4195. </tbody>
  4196. </table>
  4197. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4198. </h3>
  4199. <p>
  4200. (<em>Appears on:</em>
  4201. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4202. </p>
  4203. <p>
  4204. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4205. Project and Config are required if not using a Service Token.</p>
  4206. </p>
  4207. <table>
  4208. <thead>
  4209. <tr>
  4210. <th>Field</th>
  4211. <th>Description</th>
  4212. </tr>
  4213. </thead>
  4214. <tbody>
  4215. <tr>
  4216. <td>
  4217. <code>auth</code></br>
  4218. <em>
  4219. <a href="#external-secrets.io/v1.DopplerAuth">
  4220. DopplerAuth
  4221. </a>
  4222. </em>
  4223. </td>
  4224. <td>
  4225. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4226. </td>
  4227. </tr>
  4228. <tr>
  4229. <td>
  4230. <code>project</code></br>
  4231. <em>
  4232. string
  4233. </em>
  4234. </td>
  4235. <td>
  4236. <em>(Optional)</em>
  4237. <p>Doppler project (required if not using a Service Token)</p>
  4238. </td>
  4239. </tr>
  4240. <tr>
  4241. <td>
  4242. <code>config</code></br>
  4243. <em>
  4244. string
  4245. </em>
  4246. </td>
  4247. <td>
  4248. <em>(Optional)</em>
  4249. <p>Doppler config (required if not using a Service Token)</p>
  4250. </td>
  4251. </tr>
  4252. <tr>
  4253. <td>
  4254. <code>nameTransformer</code></br>
  4255. <em>
  4256. string
  4257. </em>
  4258. </td>
  4259. <td>
  4260. <em>(Optional)</em>
  4261. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4262. </td>
  4263. </tr>
  4264. <tr>
  4265. <td>
  4266. <code>format</code></br>
  4267. <em>
  4268. string
  4269. </em>
  4270. </td>
  4271. <td>
  4272. <em>(Optional)</em>
  4273. <p>Format enables the downloading of secrets as a file (string)</p>
  4274. </td>
  4275. </tr>
  4276. </tbody>
  4277. </table>
  4278. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4279. </h3>
  4280. <p>
  4281. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4282. </p>
  4283. <table>
  4284. <thead>
  4285. <tr>
  4286. <th>Field</th>
  4287. <th>Description</th>
  4288. </tr>
  4289. </thead>
  4290. <tbody>
  4291. <tr>
  4292. <td>
  4293. <code>metadata</code></br>
  4294. <em>
  4295. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4296. Kubernetes meta/v1.ObjectMeta
  4297. </a>
  4298. </em>
  4299. </td>
  4300. <td>
  4301. Refer to the Kubernetes API documentation for the fields of the
  4302. <code>metadata</code> field.
  4303. </td>
  4304. </tr>
  4305. <tr>
  4306. <td>
  4307. <code>spec</code></br>
  4308. <em>
  4309. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4310. ExternalSecretSpec
  4311. </a>
  4312. </em>
  4313. </td>
  4314. <td>
  4315. <br/>
  4316. <br/>
  4317. <table>
  4318. <tr>
  4319. <td>
  4320. <code>secretStoreRef</code></br>
  4321. <em>
  4322. <a href="#external-secrets.io/v1.SecretStoreRef">
  4323. SecretStoreRef
  4324. </a>
  4325. </em>
  4326. </td>
  4327. <td>
  4328. <em>(Optional)</em>
  4329. </td>
  4330. </tr>
  4331. <tr>
  4332. <td>
  4333. <code>target</code></br>
  4334. <em>
  4335. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4336. ExternalSecretTarget
  4337. </a>
  4338. </em>
  4339. </td>
  4340. <td>
  4341. <em>(Optional)</em>
  4342. </td>
  4343. </tr>
  4344. <tr>
  4345. <td>
  4346. <code>refreshPolicy</code></br>
  4347. <em>
  4348. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4349. ExternalSecretRefreshPolicy
  4350. </a>
  4351. </em>
  4352. </td>
  4353. <td>
  4354. <em>(Optional)</em>
  4355. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4356. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4357. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4358. No periodic updates occur if refreshInterval is 0.
  4359. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4360. </td>
  4361. </tr>
  4362. <tr>
  4363. <td>
  4364. <code>refreshInterval</code></br>
  4365. <em>
  4366. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4367. Kubernetes meta/v1.Duration
  4368. </a>
  4369. </em>
  4370. </td>
  4371. <td>
  4372. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4373. specified as Golang Duration strings.
  4374. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4375. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4376. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4377. </td>
  4378. </tr>
  4379. <tr>
  4380. <td>
  4381. <code>data</code></br>
  4382. <em>
  4383. <a href="#external-secrets.io/v1.ExternalSecretData">
  4384. []ExternalSecretData
  4385. </a>
  4386. </em>
  4387. </td>
  4388. <td>
  4389. <em>(Optional)</em>
  4390. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4391. </td>
  4392. </tr>
  4393. <tr>
  4394. <td>
  4395. <code>dataFrom</code></br>
  4396. <em>
  4397. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4398. []ExternalSecretDataFromRemoteRef
  4399. </a>
  4400. </em>
  4401. </td>
  4402. <td>
  4403. <em>(Optional)</em>
  4404. <p>DataFrom is used to fetch all properties from a specific Provider data
  4405. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4406. </td>
  4407. </tr>
  4408. </table>
  4409. </td>
  4410. </tr>
  4411. <tr>
  4412. <td>
  4413. <code>status</code></br>
  4414. <em>
  4415. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4416. ExternalSecretStatus
  4417. </a>
  4418. </em>
  4419. </td>
  4420. <td>
  4421. </td>
  4422. </tr>
  4423. </tbody>
  4424. </table>
  4425. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4426. (<code>string</code> alias)</p></h3>
  4427. <p>
  4428. (<em>Appears on:</em>
  4429. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4430. </p>
  4431. <p>
  4432. </p>
  4433. <table>
  4434. <thead>
  4435. <tr>
  4436. <th>Value</th>
  4437. <th>Description</th>
  4438. </tr>
  4439. </thead>
  4440. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4441. <td></td>
  4442. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4443. <td></td>
  4444. </tr></tbody>
  4445. </table>
  4446. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4447. (<code>string</code> alias)</p></h3>
  4448. <p>
  4449. (<em>Appears on:</em>
  4450. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4451. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4452. </p>
  4453. <p>
  4454. </p>
  4455. <table>
  4456. <thead>
  4457. <tr>
  4458. <th>Value</th>
  4459. <th>Description</th>
  4460. </tr>
  4461. </thead>
  4462. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4463. <td></td>
  4464. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4465. <td></td>
  4466. </tr></tbody>
  4467. </table>
  4468. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4469. (<code>string</code> alias)</p></h3>
  4470. <p>
  4471. (<em>Appears on:</em>
  4472. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4473. </p>
  4474. <p>
  4475. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4476. </p>
  4477. <table>
  4478. <thead>
  4479. <tr>
  4480. <th>Value</th>
  4481. <th>Description</th>
  4482. </tr>
  4483. </thead>
  4484. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4485. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4486. </td>
  4487. </tr><tr><td><p>&#34;None&#34;</p></td>
  4488. <td><p>None does not create a Secret (future use with injector).</p>
  4489. </td>
  4490. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4491. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4492. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4493. </td>
  4494. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4495. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4496. </td>
  4497. </tr></tbody>
  4498. </table>
  4499. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4500. </h3>
  4501. <p>
  4502. (<em>Appears on:</em>
  4503. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4504. </p>
  4505. <p>
  4506. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4507. </p>
  4508. <table>
  4509. <thead>
  4510. <tr>
  4511. <th>Field</th>
  4512. <th>Description</th>
  4513. </tr>
  4514. </thead>
  4515. <tbody>
  4516. <tr>
  4517. <td>
  4518. <code>secretKey</code></br>
  4519. <em>
  4520. string
  4521. </em>
  4522. </td>
  4523. <td>
  4524. <p>The key in the Kubernetes Secret to store the value.</p>
  4525. </td>
  4526. </tr>
  4527. <tr>
  4528. <td>
  4529. <code>remoteRef</code></br>
  4530. <em>
  4531. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4532. ExternalSecretDataRemoteRef
  4533. </a>
  4534. </em>
  4535. </td>
  4536. <td>
  4537. <p>RemoteRef points to the remote secret and defines
  4538. which secret (version/property/..) to fetch.</p>
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td>
  4543. <code>sourceRef</code></br>
  4544. <em>
  4545. <a href="#external-secrets.io/v1.StoreSourceRef">
  4546. StoreSourceRef
  4547. </a>
  4548. </em>
  4549. </td>
  4550. <td>
  4551. <p>SourceRef allows you to override the source
  4552. from which the value will be pulled.</p>
  4553. </td>
  4554. </tr>
  4555. </tbody>
  4556. </table>
  4557. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4558. </h3>
  4559. <p>
  4560. (<em>Appears on:</em>
  4561. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4562. </p>
  4563. <p>
  4564. </p>
  4565. <table>
  4566. <thead>
  4567. <tr>
  4568. <th>Field</th>
  4569. <th>Description</th>
  4570. </tr>
  4571. </thead>
  4572. <tbody>
  4573. <tr>
  4574. <td>
  4575. <code>extract</code></br>
  4576. <em>
  4577. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4578. ExternalSecretDataRemoteRef
  4579. </a>
  4580. </em>
  4581. </td>
  4582. <td>
  4583. <em>(Optional)</em>
  4584. <p>Used to extract multiple key/value pairs from one secret
  4585. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4586. </td>
  4587. </tr>
  4588. <tr>
  4589. <td>
  4590. <code>find</code></br>
  4591. <em>
  4592. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4593. ExternalSecretFind
  4594. </a>
  4595. </em>
  4596. </td>
  4597. <td>
  4598. <em>(Optional)</em>
  4599. <p>Used to find secrets based on tags or regular expressions
  4600. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4601. </td>
  4602. </tr>
  4603. <tr>
  4604. <td>
  4605. <code>rewrite</code></br>
  4606. <em>
  4607. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4608. []ExternalSecretRewrite
  4609. </a>
  4610. </em>
  4611. </td>
  4612. <td>
  4613. <em>(Optional)</em>
  4614. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4615. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4616. </td>
  4617. </tr>
  4618. <tr>
  4619. <td>
  4620. <code>sourceRef</code></br>
  4621. <em>
  4622. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4623. StoreGeneratorSourceRef
  4624. </a>
  4625. </em>
  4626. </td>
  4627. <td>
  4628. <p>SourceRef points to a store or generator
  4629. which contains secret values ready to use.
  4630. Use this in combination with Extract or Find pull values out of
  4631. a specific SecretStore.
  4632. When sourceRef points to a generator Extract or Find is not supported.
  4633. The generator returns a static map of values</p>
  4634. </td>
  4635. </tr>
  4636. </tbody>
  4637. </table>
  4638. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4639. </h3>
  4640. <p>
  4641. (<em>Appears on:</em>
  4642. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4643. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4644. </p>
  4645. <p>
  4646. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4647. </p>
  4648. <table>
  4649. <thead>
  4650. <tr>
  4651. <th>Field</th>
  4652. <th>Description</th>
  4653. </tr>
  4654. </thead>
  4655. <tbody>
  4656. <tr>
  4657. <td>
  4658. <code>key</code></br>
  4659. <em>
  4660. string
  4661. </em>
  4662. </td>
  4663. <td>
  4664. <p>Key is the key used in the Provider, mandatory</p>
  4665. </td>
  4666. </tr>
  4667. <tr>
  4668. <td>
  4669. <code>metadataPolicy</code></br>
  4670. <em>
  4671. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4672. ExternalSecretMetadataPolicy
  4673. </a>
  4674. </em>
  4675. </td>
  4676. <td>
  4677. <em>(Optional)</em>
  4678. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4679. </td>
  4680. </tr>
  4681. <tr>
  4682. <td>
  4683. <code>property</code></br>
  4684. <em>
  4685. string
  4686. </em>
  4687. </td>
  4688. <td>
  4689. <em>(Optional)</em>
  4690. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4691. </td>
  4692. </tr>
  4693. <tr>
  4694. <td>
  4695. <code>version</code></br>
  4696. <em>
  4697. string
  4698. </em>
  4699. </td>
  4700. <td>
  4701. <em>(Optional)</em>
  4702. <p>Used to select a specific version of the Provider value, if supported</p>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td>
  4707. <code>conversionStrategy</code></br>
  4708. <em>
  4709. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4710. ExternalSecretConversionStrategy
  4711. </a>
  4712. </em>
  4713. </td>
  4714. <td>
  4715. <em>(Optional)</em>
  4716. <p>Used to define a conversion Strategy</p>
  4717. </td>
  4718. </tr>
  4719. <tr>
  4720. <td>
  4721. <code>decodingStrategy</code></br>
  4722. <em>
  4723. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4724. ExternalSecretDecodingStrategy
  4725. </a>
  4726. </em>
  4727. </td>
  4728. <td>
  4729. <em>(Optional)</em>
  4730. <p>Used to define a decoding Strategy</p>
  4731. </td>
  4732. </tr>
  4733. </tbody>
  4734. </table>
  4735. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4736. (<code>string</code> alias)</p></h3>
  4737. <p>
  4738. (<em>Appears on:</em>
  4739. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4740. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4741. </p>
  4742. <p>
  4743. </p>
  4744. <table>
  4745. <thead>
  4746. <tr>
  4747. <th>Value</th>
  4748. <th>Description</th>
  4749. </tr>
  4750. </thead>
  4751. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4752. <td></td>
  4753. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4754. <td></td>
  4755. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4756. <td></td>
  4757. </tr><tr><td><p>&#34;None&#34;</p></td>
  4758. <td></td>
  4759. </tr></tbody>
  4760. </table>
  4761. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4762. (<code>string</code> alias)</p></h3>
  4763. <p>
  4764. (<em>Appears on:</em>
  4765. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4766. </p>
  4767. <p>
  4768. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4769. </p>
  4770. <table>
  4771. <thead>
  4772. <tr>
  4773. <th>Value</th>
  4774. <th>Description</th>
  4775. </tr>
  4776. </thead>
  4777. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4778. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4779. If a secret gets deleted on the provider side and is not accessible
  4780. anymore this is not considered an error and the ExternalSecret
  4781. does not go into SecretSyncedError status.</p>
  4782. </td>
  4783. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4784. <td><p>Merge removes keys in the secret, but not the secret itself.
  4785. If a secret gets deleted on the provider side and is not accessible
  4786. anymore this is not considered an error and the ExternalSecret
  4787. does not go into SecretSyncedError status.</p>
  4788. </td>
  4789. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4790. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4791. If a provider secret does not exist the ExternalSecret gets into the
  4792. SecretSyncedError status.</p>
  4793. </td>
  4794. </tr></tbody>
  4795. </table>
  4796. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  4797. </h3>
  4798. <p>
  4799. (<em>Appears on:</em>
  4800. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4801. </p>
  4802. <p>
  4803. </p>
  4804. <table>
  4805. <thead>
  4806. <tr>
  4807. <th>Field</th>
  4808. <th>Description</th>
  4809. </tr>
  4810. </thead>
  4811. <tbody>
  4812. <tr>
  4813. <td>
  4814. <code>path</code></br>
  4815. <em>
  4816. string
  4817. </em>
  4818. </td>
  4819. <td>
  4820. <em>(Optional)</em>
  4821. <p>A root path to start the find operations.</p>
  4822. </td>
  4823. </tr>
  4824. <tr>
  4825. <td>
  4826. <code>name</code></br>
  4827. <em>
  4828. <a href="#external-secrets.io/v1.FindName">
  4829. FindName
  4830. </a>
  4831. </em>
  4832. </td>
  4833. <td>
  4834. <em>(Optional)</em>
  4835. <p>Finds secrets based on the name.</p>
  4836. </td>
  4837. </tr>
  4838. <tr>
  4839. <td>
  4840. <code>tags</code></br>
  4841. <em>
  4842. map[string]string
  4843. </em>
  4844. </td>
  4845. <td>
  4846. <em>(Optional)</em>
  4847. <p>Find secrets based on tags.</p>
  4848. </td>
  4849. </tr>
  4850. <tr>
  4851. <td>
  4852. <code>conversionStrategy</code></br>
  4853. <em>
  4854. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4855. ExternalSecretConversionStrategy
  4856. </a>
  4857. </em>
  4858. </td>
  4859. <td>
  4860. <em>(Optional)</em>
  4861. <p>Used to define a conversion Strategy</p>
  4862. </td>
  4863. </tr>
  4864. <tr>
  4865. <td>
  4866. <code>decodingStrategy</code></br>
  4867. <em>
  4868. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4869. ExternalSecretDecodingStrategy
  4870. </a>
  4871. </em>
  4872. </td>
  4873. <td>
  4874. <em>(Optional)</em>
  4875. <p>Used to define a decoding Strategy</p>
  4876. </td>
  4877. </tr>
  4878. </tbody>
  4879. </table>
  4880. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  4881. </h3>
  4882. <p>
  4883. (<em>Appears on:</em>
  4884. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4885. </p>
  4886. <p>
  4887. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4888. </p>
  4889. <table>
  4890. <thead>
  4891. <tr>
  4892. <th>Field</th>
  4893. <th>Description</th>
  4894. </tr>
  4895. </thead>
  4896. <tbody>
  4897. <tr>
  4898. <td>
  4899. <code>annotations</code></br>
  4900. <em>
  4901. map[string]string
  4902. </em>
  4903. </td>
  4904. <td>
  4905. <em>(Optional)</em>
  4906. </td>
  4907. </tr>
  4908. <tr>
  4909. <td>
  4910. <code>labels</code></br>
  4911. <em>
  4912. map[string]string
  4913. </em>
  4914. </td>
  4915. <td>
  4916. <em>(Optional)</em>
  4917. </td>
  4918. </tr>
  4919. </tbody>
  4920. </table>
  4921. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4922. (<code>string</code> alias)</p></h3>
  4923. <p>
  4924. (<em>Appears on:</em>
  4925. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4926. </p>
  4927. <p>
  4928. </p>
  4929. <table>
  4930. <thead>
  4931. <tr>
  4932. <th>Value</th>
  4933. <th>Description</th>
  4934. </tr>
  4935. </thead>
  4936. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4937. <td></td>
  4938. </tr><tr><td><p>&#34;None&#34;</p></td>
  4939. <td></td>
  4940. </tr></tbody>
  4941. </table>
  4942. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  4943. (<code>string</code> alias)</p></h3>
  4944. <p>
  4945. (<em>Appears on:</em>
  4946. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4947. </p>
  4948. <p>
  4949. </p>
  4950. <table>
  4951. <thead>
  4952. <tr>
  4953. <th>Value</th>
  4954. <th>Description</th>
  4955. </tr>
  4956. </thead>
  4957. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  4958. <td></td>
  4959. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  4960. <td></td>
  4961. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  4962. <td></td>
  4963. </tr></tbody>
  4964. </table>
  4965. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  4966. </h3>
  4967. <p>
  4968. (<em>Appears on:</em>
  4969. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4970. </p>
  4971. <p>
  4972. </p>
  4973. <table>
  4974. <thead>
  4975. <tr>
  4976. <th>Field</th>
  4977. <th>Description</th>
  4978. </tr>
  4979. </thead>
  4980. <tbody>
  4981. <tr>
  4982. <td>
  4983. <code>merge</code></br>
  4984. <em>
  4985. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  4986. ExternalSecretRewriteMerge
  4987. </a>
  4988. </em>
  4989. </td>
  4990. <td>
  4991. <em>(Optional)</em>
  4992. <p>Used to merge key/values in one single Secret
  4993. The resulting key will contain all values from the specified secrets</p>
  4994. </td>
  4995. </tr>
  4996. <tr>
  4997. <td>
  4998. <code>regexp</code></br>
  4999. <em>
  5000. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5001. ExternalSecretRewriteRegexp
  5002. </a>
  5003. </em>
  5004. </td>
  5005. <td>
  5006. <em>(Optional)</em>
  5007. <p>Used to rewrite with regular expressions.
  5008. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5009. </td>
  5010. </tr>
  5011. <tr>
  5012. <td>
  5013. <code>transform</code></br>
  5014. <em>
  5015. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5016. ExternalSecretRewriteTransform
  5017. </a>
  5018. </em>
  5019. </td>
  5020. <td>
  5021. <em>(Optional)</em>
  5022. <p>Used to apply string transformation on the secrets.
  5023. The resulting key will be the output of the template applied by the operation.</p>
  5024. </td>
  5025. </tr>
  5026. </tbody>
  5027. </table>
  5028. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5029. </h3>
  5030. <p>
  5031. (<em>Appears on:</em>
  5032. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5033. </p>
  5034. <p>
  5035. </p>
  5036. <table>
  5037. <thead>
  5038. <tr>
  5039. <th>Field</th>
  5040. <th>Description</th>
  5041. </tr>
  5042. </thead>
  5043. <tbody>
  5044. <tr>
  5045. <td>
  5046. <code>into</code></br>
  5047. <em>
  5048. string
  5049. </em>
  5050. </td>
  5051. <td>
  5052. <em>(Optional)</em>
  5053. <p>Used to define the target key of the merge operation.
  5054. Required if strategy is JSON. Ignored otherwise.</p>
  5055. </td>
  5056. </tr>
  5057. <tr>
  5058. <td>
  5059. <code>priority</code></br>
  5060. <em>
  5061. []string
  5062. </em>
  5063. </td>
  5064. <td>
  5065. <em>(Optional)</em>
  5066. <p>Used to define key priority in conflict resolution.</p>
  5067. </td>
  5068. </tr>
  5069. <tr>
  5070. <td>
  5071. <code>conflictPolicy</code></br>
  5072. <em>
  5073. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5074. ExternalSecretRewriteMergeConflictPolicy
  5075. </a>
  5076. </em>
  5077. </td>
  5078. <td>
  5079. <em>(Optional)</em>
  5080. <p>Used to define the policy to use in conflict resolution.</p>
  5081. </td>
  5082. </tr>
  5083. <tr>
  5084. <td>
  5085. <code>strategy</code></br>
  5086. <em>
  5087. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5088. ExternalSecretRewriteMergeStrategy
  5089. </a>
  5090. </em>
  5091. </td>
  5092. <td>
  5093. <em>(Optional)</em>
  5094. <p>Used to define the strategy to use in the merge operation.</p>
  5095. </td>
  5096. </tr>
  5097. </tbody>
  5098. </table>
  5099. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5100. (<code>string</code> alias)</p></h3>
  5101. <p>
  5102. (<em>Appears on:</em>
  5103. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5104. </p>
  5105. <p>
  5106. </p>
  5107. <table>
  5108. <thead>
  5109. <tr>
  5110. <th>Value</th>
  5111. <th>Description</th>
  5112. </tr>
  5113. </thead>
  5114. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5115. <td></td>
  5116. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5117. <td></td>
  5118. </tr></tbody>
  5119. </table>
  5120. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5121. (<code>string</code> alias)</p></h3>
  5122. <p>
  5123. (<em>Appears on:</em>
  5124. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5125. </p>
  5126. <p>
  5127. </p>
  5128. <table>
  5129. <thead>
  5130. <tr>
  5131. <th>Value</th>
  5132. <th>Description</th>
  5133. </tr>
  5134. </thead>
  5135. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5136. <td></td>
  5137. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5138. <td></td>
  5139. </tr></tbody>
  5140. </table>
  5141. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5142. </h3>
  5143. <p>
  5144. (<em>Appears on:</em>
  5145. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5146. </p>
  5147. <p>
  5148. </p>
  5149. <table>
  5150. <thead>
  5151. <tr>
  5152. <th>Field</th>
  5153. <th>Description</th>
  5154. </tr>
  5155. </thead>
  5156. <tbody>
  5157. <tr>
  5158. <td>
  5159. <code>source</code></br>
  5160. <em>
  5161. string
  5162. </em>
  5163. </td>
  5164. <td>
  5165. <p>Used to define the regular expression of a re.Compiler.</p>
  5166. </td>
  5167. </tr>
  5168. <tr>
  5169. <td>
  5170. <code>target</code></br>
  5171. <em>
  5172. string
  5173. </em>
  5174. </td>
  5175. <td>
  5176. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5177. </td>
  5178. </tr>
  5179. </tbody>
  5180. </table>
  5181. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5182. </h3>
  5183. <p>
  5184. (<em>Appears on:</em>
  5185. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5186. </p>
  5187. <p>
  5188. </p>
  5189. <table>
  5190. <thead>
  5191. <tr>
  5192. <th>Field</th>
  5193. <th>Description</th>
  5194. </tr>
  5195. </thead>
  5196. <tbody>
  5197. <tr>
  5198. <td>
  5199. <code>template</code></br>
  5200. <em>
  5201. string
  5202. </em>
  5203. </td>
  5204. <td>
  5205. <p>Used to define the template to apply on the secret name.
  5206. <code>.value</code> will specify the secret name in the template.</p>
  5207. </td>
  5208. </tr>
  5209. </tbody>
  5210. </table>
  5211. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5212. </h3>
  5213. <p>
  5214. (<em>Appears on:</em>
  5215. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5216. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5217. </p>
  5218. <p>
  5219. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5220. </p>
  5221. <table>
  5222. <thead>
  5223. <tr>
  5224. <th>Field</th>
  5225. <th>Description</th>
  5226. </tr>
  5227. </thead>
  5228. <tbody>
  5229. <tr>
  5230. <td>
  5231. <code>secretStoreRef</code></br>
  5232. <em>
  5233. <a href="#external-secrets.io/v1.SecretStoreRef">
  5234. SecretStoreRef
  5235. </a>
  5236. </em>
  5237. </td>
  5238. <td>
  5239. <em>(Optional)</em>
  5240. </td>
  5241. </tr>
  5242. <tr>
  5243. <td>
  5244. <code>target</code></br>
  5245. <em>
  5246. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5247. ExternalSecretTarget
  5248. </a>
  5249. </em>
  5250. </td>
  5251. <td>
  5252. <em>(Optional)</em>
  5253. </td>
  5254. </tr>
  5255. <tr>
  5256. <td>
  5257. <code>refreshPolicy</code></br>
  5258. <em>
  5259. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5260. ExternalSecretRefreshPolicy
  5261. </a>
  5262. </em>
  5263. </td>
  5264. <td>
  5265. <em>(Optional)</em>
  5266. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5267. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5268. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5269. No periodic updates occur if refreshInterval is 0.
  5270. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5271. </td>
  5272. </tr>
  5273. <tr>
  5274. <td>
  5275. <code>refreshInterval</code></br>
  5276. <em>
  5277. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5278. Kubernetes meta/v1.Duration
  5279. </a>
  5280. </em>
  5281. </td>
  5282. <td>
  5283. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5284. specified as Golang Duration strings.
  5285. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5286. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5287. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5288. </td>
  5289. </tr>
  5290. <tr>
  5291. <td>
  5292. <code>data</code></br>
  5293. <em>
  5294. <a href="#external-secrets.io/v1.ExternalSecretData">
  5295. []ExternalSecretData
  5296. </a>
  5297. </em>
  5298. </td>
  5299. <td>
  5300. <em>(Optional)</em>
  5301. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5302. </td>
  5303. </tr>
  5304. <tr>
  5305. <td>
  5306. <code>dataFrom</code></br>
  5307. <em>
  5308. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5309. []ExternalSecretDataFromRemoteRef
  5310. </a>
  5311. </em>
  5312. </td>
  5313. <td>
  5314. <em>(Optional)</em>
  5315. <p>DataFrom is used to fetch all properties from a specific Provider data
  5316. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5317. </td>
  5318. </tr>
  5319. </tbody>
  5320. </table>
  5321. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5322. </h3>
  5323. <p>
  5324. (<em>Appears on:</em>
  5325. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5326. </p>
  5327. <p>
  5328. </p>
  5329. <table>
  5330. <thead>
  5331. <tr>
  5332. <th>Field</th>
  5333. <th>Description</th>
  5334. </tr>
  5335. </thead>
  5336. <tbody>
  5337. <tr>
  5338. <td>
  5339. <code>refreshTime</code></br>
  5340. <em>
  5341. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5342. Kubernetes meta/v1.Time
  5343. </a>
  5344. </em>
  5345. </td>
  5346. <td>
  5347. <p>refreshTime is the time and date the external secret was fetched and
  5348. the target secret updated</p>
  5349. </td>
  5350. </tr>
  5351. <tr>
  5352. <td>
  5353. <code>syncedResourceVersion</code></br>
  5354. <em>
  5355. string
  5356. </em>
  5357. </td>
  5358. <td>
  5359. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5360. </td>
  5361. </tr>
  5362. <tr>
  5363. <td>
  5364. <code>conditions</code></br>
  5365. <em>
  5366. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5367. []ExternalSecretStatusCondition
  5368. </a>
  5369. </em>
  5370. </td>
  5371. <td>
  5372. <em>(Optional)</em>
  5373. </td>
  5374. </tr>
  5375. <tr>
  5376. <td>
  5377. <code>binding</code></br>
  5378. <em>
  5379. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5380. Kubernetes core/v1.LocalObjectReference
  5381. </a>
  5382. </em>
  5383. </td>
  5384. <td>
  5385. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5386. </td>
  5387. </tr>
  5388. </tbody>
  5389. </table>
  5390. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5391. </h3>
  5392. <p>
  5393. (<em>Appears on:</em>
  5394. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5395. </p>
  5396. <p>
  5397. </p>
  5398. <table>
  5399. <thead>
  5400. <tr>
  5401. <th>Field</th>
  5402. <th>Description</th>
  5403. </tr>
  5404. </thead>
  5405. <tbody>
  5406. <tr>
  5407. <td>
  5408. <code>type</code></br>
  5409. <em>
  5410. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5411. ExternalSecretConditionType
  5412. </a>
  5413. </em>
  5414. </td>
  5415. <td>
  5416. </td>
  5417. </tr>
  5418. <tr>
  5419. <td>
  5420. <code>status</code></br>
  5421. <em>
  5422. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5423. Kubernetes core/v1.ConditionStatus
  5424. </a>
  5425. </em>
  5426. </td>
  5427. <td>
  5428. </td>
  5429. </tr>
  5430. <tr>
  5431. <td>
  5432. <code>reason</code></br>
  5433. <em>
  5434. string
  5435. </em>
  5436. </td>
  5437. <td>
  5438. <em>(Optional)</em>
  5439. </td>
  5440. </tr>
  5441. <tr>
  5442. <td>
  5443. <code>message</code></br>
  5444. <em>
  5445. string
  5446. </em>
  5447. </td>
  5448. <td>
  5449. <em>(Optional)</em>
  5450. </td>
  5451. </tr>
  5452. <tr>
  5453. <td>
  5454. <code>lastTransitionTime</code></br>
  5455. <em>
  5456. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5457. Kubernetes meta/v1.Time
  5458. </a>
  5459. </em>
  5460. </td>
  5461. <td>
  5462. <em>(Optional)</em>
  5463. </td>
  5464. </tr>
  5465. </tbody>
  5466. </table>
  5467. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5468. </h3>
  5469. <p>
  5470. (<em>Appears on:</em>
  5471. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5472. </p>
  5473. <p>
  5474. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5475. There can be only one target per ExternalSecret.</p>
  5476. </p>
  5477. <table>
  5478. <thead>
  5479. <tr>
  5480. <th>Field</th>
  5481. <th>Description</th>
  5482. </tr>
  5483. </thead>
  5484. <tbody>
  5485. <tr>
  5486. <td>
  5487. <code>name</code></br>
  5488. <em>
  5489. string
  5490. </em>
  5491. </td>
  5492. <td>
  5493. <em>(Optional)</em>
  5494. <p>The name of the Secret resource to be managed.
  5495. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5496. </td>
  5497. </tr>
  5498. <tr>
  5499. <td>
  5500. <code>creationPolicy</code></br>
  5501. <em>
  5502. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5503. ExternalSecretCreationPolicy
  5504. </a>
  5505. </em>
  5506. </td>
  5507. <td>
  5508. <em>(Optional)</em>
  5509. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5510. Defaults to &ldquo;Owner&rdquo;</p>
  5511. </td>
  5512. </tr>
  5513. <tr>
  5514. <td>
  5515. <code>deletionPolicy</code></br>
  5516. <em>
  5517. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5518. ExternalSecretDeletionPolicy
  5519. </a>
  5520. </em>
  5521. </td>
  5522. <td>
  5523. <em>(Optional)</em>
  5524. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5525. Defaults to &ldquo;Retain&rdquo;</p>
  5526. </td>
  5527. </tr>
  5528. <tr>
  5529. <td>
  5530. <code>template</code></br>
  5531. <em>
  5532. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5533. ExternalSecretTemplate
  5534. </a>
  5535. </em>
  5536. </td>
  5537. <td>
  5538. <em>(Optional)</em>
  5539. <p>Template defines a blueprint for the created Secret resource.</p>
  5540. </td>
  5541. </tr>
  5542. <tr>
  5543. <td>
  5544. <code>immutable</code></br>
  5545. <em>
  5546. bool
  5547. </em>
  5548. </td>
  5549. <td>
  5550. <em>(Optional)</em>
  5551. <p>Immutable defines if the final secret will be immutable</p>
  5552. </td>
  5553. </tr>
  5554. </tbody>
  5555. </table>
  5556. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5557. </h3>
  5558. <p>
  5559. (<em>Appears on:</em>
  5560. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5561. </p>
  5562. <p>
  5563. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5564. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5565. </p>
  5566. <table>
  5567. <thead>
  5568. <tr>
  5569. <th>Field</th>
  5570. <th>Description</th>
  5571. </tr>
  5572. </thead>
  5573. <tbody>
  5574. <tr>
  5575. <td>
  5576. <code>type</code></br>
  5577. <em>
  5578. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5579. Kubernetes core/v1.SecretType
  5580. </a>
  5581. </em>
  5582. </td>
  5583. <td>
  5584. <em>(Optional)</em>
  5585. </td>
  5586. </tr>
  5587. <tr>
  5588. <td>
  5589. <code>engineVersion</code></br>
  5590. <em>
  5591. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5592. TemplateEngineVersion
  5593. </a>
  5594. </em>
  5595. </td>
  5596. <td>
  5597. <p>EngineVersion specifies the template engine version
  5598. that should be used to compile/execute the
  5599. template specified in .data and .templateFrom[].</p>
  5600. </td>
  5601. </tr>
  5602. <tr>
  5603. <td>
  5604. <code>metadata</code></br>
  5605. <em>
  5606. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5607. ExternalSecretTemplateMetadata
  5608. </a>
  5609. </em>
  5610. </td>
  5611. <td>
  5612. <em>(Optional)</em>
  5613. </td>
  5614. </tr>
  5615. <tr>
  5616. <td>
  5617. <code>mergePolicy</code></br>
  5618. <em>
  5619. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5620. TemplateMergePolicy
  5621. </a>
  5622. </em>
  5623. </td>
  5624. <td>
  5625. </td>
  5626. </tr>
  5627. <tr>
  5628. <td>
  5629. <code>data</code></br>
  5630. <em>
  5631. map[string]string
  5632. </em>
  5633. </td>
  5634. <td>
  5635. <em>(Optional)</em>
  5636. </td>
  5637. </tr>
  5638. <tr>
  5639. <td>
  5640. <code>templateFrom</code></br>
  5641. <em>
  5642. <a href="#external-secrets.io/v1.TemplateFrom">
  5643. []TemplateFrom
  5644. </a>
  5645. </em>
  5646. </td>
  5647. <td>
  5648. <em>(Optional)</em>
  5649. </td>
  5650. </tr>
  5651. </tbody>
  5652. </table>
  5653. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5654. </h3>
  5655. <p>
  5656. (<em>Appears on:</em>
  5657. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5658. </p>
  5659. <p>
  5660. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5661. </p>
  5662. <table>
  5663. <thead>
  5664. <tr>
  5665. <th>Field</th>
  5666. <th>Description</th>
  5667. </tr>
  5668. </thead>
  5669. <tbody>
  5670. <tr>
  5671. <td>
  5672. <code>annotations</code></br>
  5673. <em>
  5674. map[string]string
  5675. </em>
  5676. </td>
  5677. <td>
  5678. <em>(Optional)</em>
  5679. </td>
  5680. </tr>
  5681. <tr>
  5682. <td>
  5683. <code>labels</code></br>
  5684. <em>
  5685. map[string]string
  5686. </em>
  5687. </td>
  5688. <td>
  5689. <em>(Optional)</em>
  5690. </td>
  5691. </tr>
  5692. </tbody>
  5693. </table>
  5694. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5695. </h3>
  5696. <p>
  5697. </p>
  5698. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5699. </h3>
  5700. <p>
  5701. (<em>Appears on:</em>
  5702. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5703. </p>
  5704. <p>
  5705. <p>FakeProvider configures a fake provider that returns static values.</p>
  5706. </p>
  5707. <table>
  5708. <thead>
  5709. <tr>
  5710. <th>Field</th>
  5711. <th>Description</th>
  5712. </tr>
  5713. </thead>
  5714. <tbody>
  5715. <tr>
  5716. <td>
  5717. <code>data</code></br>
  5718. <em>
  5719. <a href="#external-secrets.io/v1.FakeProviderData">
  5720. []FakeProviderData
  5721. </a>
  5722. </em>
  5723. </td>
  5724. <td>
  5725. </td>
  5726. </tr>
  5727. </tbody>
  5728. </table>
  5729. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5730. </h3>
  5731. <p>
  5732. (<em>Appears on:</em>
  5733. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5734. </p>
  5735. <p>
  5736. </p>
  5737. <table>
  5738. <thead>
  5739. <tr>
  5740. <th>Field</th>
  5741. <th>Description</th>
  5742. </tr>
  5743. </thead>
  5744. <tbody>
  5745. <tr>
  5746. <td>
  5747. <code>key</code></br>
  5748. <em>
  5749. string
  5750. </em>
  5751. </td>
  5752. <td>
  5753. </td>
  5754. </tr>
  5755. <tr>
  5756. <td>
  5757. <code>value</code></br>
  5758. <em>
  5759. string
  5760. </em>
  5761. </td>
  5762. <td>
  5763. </td>
  5764. </tr>
  5765. <tr>
  5766. <td>
  5767. <code>version</code></br>
  5768. <em>
  5769. string
  5770. </em>
  5771. </td>
  5772. <td>
  5773. </td>
  5774. </tr>
  5775. </tbody>
  5776. </table>
  5777. <h3 id="external-secrets.io/v1.FindName">FindName
  5778. </h3>
  5779. <p>
  5780. (<em>Appears on:</em>
  5781. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5782. </p>
  5783. <p>
  5784. </p>
  5785. <table>
  5786. <thead>
  5787. <tr>
  5788. <th>Field</th>
  5789. <th>Description</th>
  5790. </tr>
  5791. </thead>
  5792. <tbody>
  5793. <tr>
  5794. <td>
  5795. <code>regexp</code></br>
  5796. <em>
  5797. string
  5798. </em>
  5799. </td>
  5800. <td>
  5801. <em>(Optional)</em>
  5802. <p>Finds secrets base</p>
  5803. </td>
  5804. </tr>
  5805. </tbody>
  5806. </table>
  5807. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  5808. </h3>
  5809. <p>
  5810. (<em>Appears on:</em>
  5811. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5812. </p>
  5813. <p>
  5814. </p>
  5815. <table>
  5816. <thead>
  5817. <tr>
  5818. <th>Field</th>
  5819. <th>Description</th>
  5820. </tr>
  5821. </thead>
  5822. <tbody>
  5823. <tr>
  5824. <td>
  5825. <code>apiUrl</code></br>
  5826. <em>
  5827. string
  5828. </em>
  5829. </td>
  5830. <td>
  5831. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  5832. </td>
  5833. </tr>
  5834. <tr>
  5835. <td>
  5836. <code>apiKey</code></br>
  5837. <em>
  5838. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  5839. FortanixProviderSecretRef
  5840. </a>
  5841. </em>
  5842. </td>
  5843. <td>
  5844. <p>APIKey is the API token to access SDKMS Applications.</p>
  5845. </td>
  5846. </tr>
  5847. </tbody>
  5848. </table>
  5849. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5850. </h3>
  5851. <p>
  5852. (<em>Appears on:</em>
  5853. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  5854. </p>
  5855. <p>
  5856. </p>
  5857. <table>
  5858. <thead>
  5859. <tr>
  5860. <th>Field</th>
  5861. <th>Description</th>
  5862. </tr>
  5863. </thead>
  5864. <tbody>
  5865. <tr>
  5866. <td>
  5867. <code>secretRef</code></br>
  5868. <em>
  5869. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5870. External Secrets meta/v1.SecretKeySelector
  5871. </a>
  5872. </em>
  5873. </td>
  5874. <td>
  5875. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5876. </td>
  5877. </tr>
  5878. </tbody>
  5879. </table>
  5880. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  5881. </h3>
  5882. <p>
  5883. (<em>Appears on:</em>
  5884. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  5885. </p>
  5886. <p>
  5887. </p>
  5888. <table>
  5889. <thead>
  5890. <tr>
  5891. <th>Field</th>
  5892. <th>Description</th>
  5893. </tr>
  5894. </thead>
  5895. <tbody>
  5896. <tr>
  5897. <td>
  5898. <code>secretRef</code></br>
  5899. <em>
  5900. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  5901. GCPSMAuthSecretRef
  5902. </a>
  5903. </em>
  5904. </td>
  5905. <td>
  5906. <em>(Optional)</em>
  5907. </td>
  5908. </tr>
  5909. <tr>
  5910. <td>
  5911. <code>workloadIdentity</code></br>
  5912. <em>
  5913. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  5914. GCPWorkloadIdentity
  5915. </a>
  5916. </em>
  5917. </td>
  5918. <td>
  5919. <em>(Optional)</em>
  5920. </td>
  5921. </tr>
  5922. </tbody>
  5923. </table>
  5924. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5925. </h3>
  5926. <p>
  5927. (<em>Appears on:</em>
  5928. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5929. </p>
  5930. <p>
  5931. </p>
  5932. <table>
  5933. <thead>
  5934. <tr>
  5935. <th>Field</th>
  5936. <th>Description</th>
  5937. </tr>
  5938. </thead>
  5939. <tbody>
  5940. <tr>
  5941. <td>
  5942. <code>secretAccessKeySecretRef</code></br>
  5943. <em>
  5944. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5945. External Secrets meta/v1.SecretKeySelector
  5946. </a>
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <em>(Optional)</em>
  5951. <p>The SecretAccessKey is used for authentication</p>
  5952. </td>
  5953. </tr>
  5954. </tbody>
  5955. </table>
  5956. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  5957. </h3>
  5958. <p>
  5959. (<em>Appears on:</em>
  5960. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5961. </p>
  5962. <p>
  5963. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  5964. </p>
  5965. <table>
  5966. <thead>
  5967. <tr>
  5968. <th>Field</th>
  5969. <th>Description</th>
  5970. </tr>
  5971. </thead>
  5972. <tbody>
  5973. <tr>
  5974. <td>
  5975. <code>auth</code></br>
  5976. <em>
  5977. <a href="#external-secrets.io/v1.GCPSMAuth">
  5978. GCPSMAuth
  5979. </a>
  5980. </em>
  5981. </td>
  5982. <td>
  5983. <em>(Optional)</em>
  5984. <p>Auth defines the information necessary to authenticate against GCP</p>
  5985. </td>
  5986. </tr>
  5987. <tr>
  5988. <td>
  5989. <code>projectID</code></br>
  5990. <em>
  5991. string
  5992. </em>
  5993. </td>
  5994. <td>
  5995. <p>ProjectID project where secret is located</p>
  5996. </td>
  5997. </tr>
  5998. <tr>
  5999. <td>
  6000. <code>location</code></br>
  6001. <em>
  6002. string
  6003. </em>
  6004. </td>
  6005. <td>
  6006. <p>Location optionally defines a location for a secret</p>
  6007. </td>
  6008. </tr>
  6009. </tbody>
  6010. </table>
  6011. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6012. </h3>
  6013. <p>
  6014. (<em>Appears on:</em>
  6015. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6016. </p>
  6017. <p>
  6018. </p>
  6019. <table>
  6020. <thead>
  6021. <tr>
  6022. <th>Field</th>
  6023. <th>Description</th>
  6024. </tr>
  6025. </thead>
  6026. <tbody>
  6027. <tr>
  6028. <td>
  6029. <code>serviceAccountRef</code></br>
  6030. <em>
  6031. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6032. External Secrets meta/v1.ServiceAccountSelector
  6033. </a>
  6034. </em>
  6035. </td>
  6036. <td>
  6037. </td>
  6038. </tr>
  6039. <tr>
  6040. <td>
  6041. <code>clusterLocation</code></br>
  6042. <em>
  6043. string
  6044. </em>
  6045. </td>
  6046. <td>
  6047. <em>(Optional)</em>
  6048. <p>ClusterLocation is the location of the cluster
  6049. If not specified, it fetches information from the metadata server</p>
  6050. </td>
  6051. </tr>
  6052. <tr>
  6053. <td>
  6054. <code>clusterName</code></br>
  6055. <em>
  6056. string
  6057. </em>
  6058. </td>
  6059. <td>
  6060. <em>(Optional)</em>
  6061. <p>ClusterName is the name of the cluster
  6062. If not specified, it fetches information from the metadata server</p>
  6063. </td>
  6064. </tr>
  6065. <tr>
  6066. <td>
  6067. <code>clusterProjectID</code></br>
  6068. <em>
  6069. string
  6070. </em>
  6071. </td>
  6072. <td>
  6073. <em>(Optional)</em>
  6074. <p>ClusterProjectID is the project ID of the cluster
  6075. If not specified, it fetches information from the metadata server</p>
  6076. </td>
  6077. </tr>
  6078. </tbody>
  6079. </table>
  6080. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6081. </h3>
  6082. <p>
  6083. (<em>Appears on:</em>
  6084. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6085. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6086. </p>
  6087. <p>
  6088. <p>GeneratorRef points to a generator custom resource.</p>
  6089. </p>
  6090. <table>
  6091. <thead>
  6092. <tr>
  6093. <th>Field</th>
  6094. <th>Description</th>
  6095. </tr>
  6096. </thead>
  6097. <tbody>
  6098. <tr>
  6099. <td>
  6100. <code>apiVersion</code></br>
  6101. <em>
  6102. string
  6103. </em>
  6104. </td>
  6105. <td>
  6106. <p>Specify the apiVersion of the generator resource</p>
  6107. </td>
  6108. </tr>
  6109. <tr>
  6110. <td>
  6111. <code>kind</code></br>
  6112. <em>
  6113. string
  6114. </em>
  6115. </td>
  6116. <td>
  6117. <p>Specify the Kind of the generator resource</p>
  6118. </td>
  6119. </tr>
  6120. <tr>
  6121. <td>
  6122. <code>name</code></br>
  6123. <em>
  6124. string
  6125. </em>
  6126. </td>
  6127. <td>
  6128. <p>Specify the name of the generator resource</p>
  6129. </td>
  6130. </tr>
  6131. </tbody>
  6132. </table>
  6133. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6134. </h3>
  6135. <p>
  6136. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6137. or a namespaced SecretStore.</p>
  6138. </p>
  6139. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6140. </h3>
  6141. <p>
  6142. </p>
  6143. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6144. </h3>
  6145. <p>
  6146. (<em>Appears on:</em>
  6147. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6148. </p>
  6149. <p>
  6150. </p>
  6151. <table>
  6152. <thead>
  6153. <tr>
  6154. <th>Field</th>
  6155. <th>Description</th>
  6156. </tr>
  6157. </thead>
  6158. <tbody>
  6159. <tr>
  6160. <td>
  6161. <code>privateKey</code></br>
  6162. <em>
  6163. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6164. External Secrets meta/v1.SecretKeySelector
  6165. </a>
  6166. </em>
  6167. </td>
  6168. <td>
  6169. </td>
  6170. </tr>
  6171. </tbody>
  6172. </table>
  6173. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6174. </h3>
  6175. <p>
  6176. (<em>Appears on:</em>
  6177. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6178. </p>
  6179. <p>
  6180. <p>Configures a store to push secrets to Github Actions.</p>
  6181. </p>
  6182. <table>
  6183. <thead>
  6184. <tr>
  6185. <th>Field</th>
  6186. <th>Description</th>
  6187. </tr>
  6188. </thead>
  6189. <tbody>
  6190. <tr>
  6191. <td>
  6192. <code>url</code></br>
  6193. <em>
  6194. string
  6195. </em>
  6196. </td>
  6197. <td>
  6198. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6199. </td>
  6200. </tr>
  6201. <tr>
  6202. <td>
  6203. <code>uploadURL</code></br>
  6204. <em>
  6205. string
  6206. </em>
  6207. </td>
  6208. <td>
  6209. <em>(Optional)</em>
  6210. <p>Upload URL for enterprise instances. Default to URL.</p>
  6211. </td>
  6212. </tr>
  6213. <tr>
  6214. <td>
  6215. <code>auth</code></br>
  6216. <em>
  6217. <a href="#external-secrets.io/v1.GithubAppAuth">
  6218. GithubAppAuth
  6219. </a>
  6220. </em>
  6221. </td>
  6222. <td>
  6223. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6224. </td>
  6225. </tr>
  6226. <tr>
  6227. <td>
  6228. <code>appID</code></br>
  6229. <em>
  6230. int64
  6231. </em>
  6232. </td>
  6233. <td>
  6234. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6235. </td>
  6236. </tr>
  6237. <tr>
  6238. <td>
  6239. <code>installationID</code></br>
  6240. <em>
  6241. int64
  6242. </em>
  6243. </td>
  6244. <td>
  6245. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6246. </td>
  6247. </tr>
  6248. <tr>
  6249. <td>
  6250. <code>organization</code></br>
  6251. <em>
  6252. string
  6253. </em>
  6254. </td>
  6255. <td>
  6256. <p>organization will be used to fetch secrets from the Github organization</p>
  6257. </td>
  6258. </tr>
  6259. <tr>
  6260. <td>
  6261. <code>repository</code></br>
  6262. <em>
  6263. string
  6264. </em>
  6265. </td>
  6266. <td>
  6267. <em>(Optional)</em>
  6268. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6269. </td>
  6270. </tr>
  6271. <tr>
  6272. <td>
  6273. <code>environment</code></br>
  6274. <em>
  6275. string
  6276. </em>
  6277. </td>
  6278. <td>
  6279. <em>(Optional)</em>
  6280. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6281. </td>
  6282. </tr>
  6283. </tbody>
  6284. </table>
  6285. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6286. </h3>
  6287. <p>
  6288. (<em>Appears on:</em>
  6289. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6290. </p>
  6291. <p>
  6292. </p>
  6293. <table>
  6294. <thead>
  6295. <tr>
  6296. <th>Field</th>
  6297. <th>Description</th>
  6298. </tr>
  6299. </thead>
  6300. <tbody>
  6301. <tr>
  6302. <td>
  6303. <code>SecretRef</code></br>
  6304. <em>
  6305. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6306. GitlabSecretRef
  6307. </a>
  6308. </em>
  6309. </td>
  6310. <td>
  6311. </td>
  6312. </tr>
  6313. </tbody>
  6314. </table>
  6315. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6316. </h3>
  6317. <p>
  6318. (<em>Appears on:</em>
  6319. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6320. </p>
  6321. <p>
  6322. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6323. </p>
  6324. <table>
  6325. <thead>
  6326. <tr>
  6327. <th>Field</th>
  6328. <th>Description</th>
  6329. </tr>
  6330. </thead>
  6331. <tbody>
  6332. <tr>
  6333. <td>
  6334. <code>url</code></br>
  6335. <em>
  6336. string
  6337. </em>
  6338. </td>
  6339. <td>
  6340. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6341. </td>
  6342. </tr>
  6343. <tr>
  6344. <td>
  6345. <code>auth</code></br>
  6346. <em>
  6347. <a href="#external-secrets.io/v1.GitlabAuth">
  6348. GitlabAuth
  6349. </a>
  6350. </em>
  6351. </td>
  6352. <td>
  6353. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6354. </td>
  6355. </tr>
  6356. <tr>
  6357. <td>
  6358. <code>projectID</code></br>
  6359. <em>
  6360. string
  6361. </em>
  6362. </td>
  6363. <td>
  6364. <p>ProjectID specifies a project where secrets are located.</p>
  6365. </td>
  6366. </tr>
  6367. <tr>
  6368. <td>
  6369. <code>inheritFromGroups</code></br>
  6370. <em>
  6371. bool
  6372. </em>
  6373. </td>
  6374. <td>
  6375. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6376. </td>
  6377. </tr>
  6378. <tr>
  6379. <td>
  6380. <code>groupIDs</code></br>
  6381. <em>
  6382. []string
  6383. </em>
  6384. </td>
  6385. <td>
  6386. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6387. </td>
  6388. </tr>
  6389. <tr>
  6390. <td>
  6391. <code>environment</code></br>
  6392. <em>
  6393. string
  6394. </em>
  6395. </td>
  6396. <td>
  6397. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6398. </td>
  6399. </tr>
  6400. </tbody>
  6401. </table>
  6402. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6403. </h3>
  6404. <p>
  6405. (<em>Appears on:</em>
  6406. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6407. </p>
  6408. <p>
  6409. </p>
  6410. <table>
  6411. <thead>
  6412. <tr>
  6413. <th>Field</th>
  6414. <th>Description</th>
  6415. </tr>
  6416. </thead>
  6417. <tbody>
  6418. <tr>
  6419. <td>
  6420. <code>accessToken</code></br>
  6421. <em>
  6422. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6423. External Secrets meta/v1.SecretKeySelector
  6424. </a>
  6425. </em>
  6426. </td>
  6427. <td>
  6428. <p>AccessToken is used for authentication.</p>
  6429. </td>
  6430. </tr>
  6431. </tbody>
  6432. </table>
  6433. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6434. </h3>
  6435. <p>
  6436. (<em>Appears on:</em>
  6437. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6438. </p>
  6439. <p>
  6440. </p>
  6441. <table>
  6442. <thead>
  6443. <tr>
  6444. <th>Field</th>
  6445. <th>Description</th>
  6446. </tr>
  6447. </thead>
  6448. <tbody>
  6449. <tr>
  6450. <td>
  6451. <code>secretRef</code></br>
  6452. <em>
  6453. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6454. IBMAuthSecretRef
  6455. </a>
  6456. </em>
  6457. </td>
  6458. <td>
  6459. </td>
  6460. </tr>
  6461. <tr>
  6462. <td>
  6463. <code>containerAuth</code></br>
  6464. <em>
  6465. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6466. IBMAuthContainerAuth
  6467. </a>
  6468. </em>
  6469. </td>
  6470. <td>
  6471. </td>
  6472. </tr>
  6473. </tbody>
  6474. </table>
  6475. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6476. </h3>
  6477. <p>
  6478. (<em>Appears on:</em>
  6479. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6480. </p>
  6481. <p>
  6482. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6483. </p>
  6484. <table>
  6485. <thead>
  6486. <tr>
  6487. <th>Field</th>
  6488. <th>Description</th>
  6489. </tr>
  6490. </thead>
  6491. <tbody>
  6492. <tr>
  6493. <td>
  6494. <code>profile</code></br>
  6495. <em>
  6496. string
  6497. </em>
  6498. </td>
  6499. <td>
  6500. <p>the IBM Trusted Profile</p>
  6501. </td>
  6502. </tr>
  6503. <tr>
  6504. <td>
  6505. <code>tokenLocation</code></br>
  6506. <em>
  6507. string
  6508. </em>
  6509. </td>
  6510. <td>
  6511. <p>Location the token is mounted on the pod</p>
  6512. </td>
  6513. </tr>
  6514. <tr>
  6515. <td>
  6516. <code>iamEndpoint</code></br>
  6517. <em>
  6518. string
  6519. </em>
  6520. </td>
  6521. <td>
  6522. </td>
  6523. </tr>
  6524. </tbody>
  6525. </table>
  6526. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  6527. </h3>
  6528. <p>
  6529. (<em>Appears on:</em>
  6530. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6531. </p>
  6532. <p>
  6533. </p>
  6534. <table>
  6535. <thead>
  6536. <tr>
  6537. <th>Field</th>
  6538. <th>Description</th>
  6539. </tr>
  6540. </thead>
  6541. <tbody>
  6542. <tr>
  6543. <td>
  6544. <code>secretApiKeySecretRef</code></br>
  6545. <em>
  6546. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6547. External Secrets meta/v1.SecretKeySelector
  6548. </a>
  6549. </em>
  6550. </td>
  6551. <td>
  6552. <p>The SecretAccessKey is used for authentication</p>
  6553. </td>
  6554. </tr>
  6555. </tbody>
  6556. </table>
  6557. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  6558. </h3>
  6559. <p>
  6560. (<em>Appears on:</em>
  6561. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6562. </p>
  6563. <p>
  6564. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  6565. backend.</p>
  6566. </p>
  6567. <table>
  6568. <thead>
  6569. <tr>
  6570. <th>Field</th>
  6571. <th>Description</th>
  6572. </tr>
  6573. </thead>
  6574. <tbody>
  6575. <tr>
  6576. <td>
  6577. <code>auth</code></br>
  6578. <em>
  6579. <a href="#external-secrets.io/v1.IBMAuth">
  6580. IBMAuth
  6581. </a>
  6582. </em>
  6583. </td>
  6584. <td>
  6585. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  6586. </td>
  6587. </tr>
  6588. <tr>
  6589. <td>
  6590. <code>serviceUrl</code></br>
  6591. <em>
  6592. string
  6593. </em>
  6594. </td>
  6595. <td>
  6596. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  6597. </td>
  6598. </tr>
  6599. </tbody>
  6600. </table>
  6601. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  6602. </h3>
  6603. <p>
  6604. (<em>Appears on:</em>
  6605. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6606. </p>
  6607. <p>
  6608. </p>
  6609. <table>
  6610. <thead>
  6611. <tr>
  6612. <th>Field</th>
  6613. <th>Description</th>
  6614. </tr>
  6615. </thead>
  6616. <tbody>
  6617. <tr>
  6618. <td>
  6619. <code>universalAuthCredentials</code></br>
  6620. <em>
  6621. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  6622. UniversalAuthCredentials
  6623. </a>
  6624. </em>
  6625. </td>
  6626. <td>
  6627. <em>(Optional)</em>
  6628. </td>
  6629. </tr>
  6630. </tbody>
  6631. </table>
  6632. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  6633. </h3>
  6634. <p>
  6635. (<em>Appears on:</em>
  6636. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6637. </p>
  6638. <p>
  6639. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  6640. </p>
  6641. <table>
  6642. <thead>
  6643. <tr>
  6644. <th>Field</th>
  6645. <th>Description</th>
  6646. </tr>
  6647. </thead>
  6648. <tbody>
  6649. <tr>
  6650. <td>
  6651. <code>auth</code></br>
  6652. <em>
  6653. <a href="#external-secrets.io/v1.InfisicalAuth">
  6654. InfisicalAuth
  6655. </a>
  6656. </em>
  6657. </td>
  6658. <td>
  6659. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  6660. </td>
  6661. </tr>
  6662. <tr>
  6663. <td>
  6664. <code>secretsScope</code></br>
  6665. <em>
  6666. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  6667. MachineIdentityScopeInWorkspace
  6668. </a>
  6669. </em>
  6670. </td>
  6671. <td>
  6672. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  6673. </td>
  6674. </tr>
  6675. <tr>
  6676. <td>
  6677. <code>hostAPI</code></br>
  6678. <em>
  6679. string
  6680. </em>
  6681. </td>
  6682. <td>
  6683. <em>(Optional)</em>
  6684. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  6685. </td>
  6686. </tr>
  6687. </tbody>
  6688. </table>
  6689. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  6690. </h3>
  6691. <p>
  6692. (<em>Appears on:</em>
  6693. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  6694. </p>
  6695. <p>
  6696. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  6697. </p>
  6698. <table>
  6699. <thead>
  6700. <tr>
  6701. <th>Field</th>
  6702. <th>Description</th>
  6703. </tr>
  6704. </thead>
  6705. <tbody>
  6706. <tr>
  6707. <td>
  6708. <code>name</code></br>
  6709. <em>
  6710. string
  6711. </em>
  6712. </td>
  6713. <td>
  6714. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  6715. </td>
  6716. </tr>
  6717. <tr>
  6718. <td>
  6719. <code>version</code></br>
  6720. <em>
  6721. string
  6722. </em>
  6723. </td>
  6724. <td>
  6725. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  6726. </td>
  6727. </tr>
  6728. </tbody>
  6729. </table>
  6730. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  6731. </h3>
  6732. <p>
  6733. (<em>Appears on:</em>
  6734. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6735. </p>
  6736. <p>
  6737. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  6738. </p>
  6739. <table>
  6740. <thead>
  6741. <tr>
  6742. <th>Field</th>
  6743. <th>Description</th>
  6744. </tr>
  6745. </thead>
  6746. <tbody>
  6747. <tr>
  6748. <td>
  6749. <code>authRef</code></br>
  6750. <em>
  6751. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6752. External Secrets meta/v1.SecretKeySelector
  6753. </a>
  6754. </em>
  6755. </td>
  6756. <td>
  6757. </td>
  6758. </tr>
  6759. <tr>
  6760. <td>
  6761. <code>folderID</code></br>
  6762. <em>
  6763. string
  6764. </em>
  6765. </td>
  6766. <td>
  6767. </td>
  6768. </tr>
  6769. </tbody>
  6770. </table>
  6771. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  6772. </h3>
  6773. <p>
  6774. (<em>Appears on:</em>
  6775. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6776. </p>
  6777. <p>
  6778. </p>
  6779. <table>
  6780. <thead>
  6781. <tr>
  6782. <th>Field</th>
  6783. <th>Description</th>
  6784. </tr>
  6785. </thead>
  6786. <tbody>
  6787. <tr>
  6788. <td>
  6789. <code>cert</code></br>
  6790. <em>
  6791. <a href="#external-secrets.io/v1.CertAuth">
  6792. CertAuth
  6793. </a>
  6794. </em>
  6795. </td>
  6796. <td>
  6797. <em>(Optional)</em>
  6798. <p>has both clientCert and clientKey as secretKeySelector</p>
  6799. </td>
  6800. </tr>
  6801. <tr>
  6802. <td>
  6803. <code>token</code></br>
  6804. <em>
  6805. <a href="#external-secrets.io/v1.TokenAuth">
  6806. TokenAuth
  6807. </a>
  6808. </em>
  6809. </td>
  6810. <td>
  6811. <em>(Optional)</em>
  6812. <p>use static token to authenticate with</p>
  6813. </td>
  6814. </tr>
  6815. <tr>
  6816. <td>
  6817. <code>serviceAccount</code></br>
  6818. <em>
  6819. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6820. External Secrets meta/v1.ServiceAccountSelector
  6821. </a>
  6822. </em>
  6823. </td>
  6824. <td>
  6825. <em>(Optional)</em>
  6826. <p>points to a service account that should be used for authentication</p>
  6827. </td>
  6828. </tr>
  6829. </tbody>
  6830. </table>
  6831. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  6832. </h3>
  6833. <p>
  6834. (<em>Appears on:</em>
  6835. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6836. </p>
  6837. <p>
  6838. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  6839. </p>
  6840. <table>
  6841. <thead>
  6842. <tr>
  6843. <th>Field</th>
  6844. <th>Description</th>
  6845. </tr>
  6846. </thead>
  6847. <tbody>
  6848. <tr>
  6849. <td>
  6850. <code>server</code></br>
  6851. <em>
  6852. <a href="#external-secrets.io/v1.KubernetesServer">
  6853. KubernetesServer
  6854. </a>
  6855. </em>
  6856. </td>
  6857. <td>
  6858. <em>(Optional)</em>
  6859. <p>configures the Kubernetes server Address.</p>
  6860. </td>
  6861. </tr>
  6862. <tr>
  6863. <td>
  6864. <code>auth</code></br>
  6865. <em>
  6866. <a href="#external-secrets.io/v1.KubernetesAuth">
  6867. KubernetesAuth
  6868. </a>
  6869. </em>
  6870. </td>
  6871. <td>
  6872. <em>(Optional)</em>
  6873. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  6874. </td>
  6875. </tr>
  6876. <tr>
  6877. <td>
  6878. <code>authRef</code></br>
  6879. <em>
  6880. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6881. External Secrets meta/v1.SecretKeySelector
  6882. </a>
  6883. </em>
  6884. </td>
  6885. <td>
  6886. <em>(Optional)</em>
  6887. <p>A reference to a secret that contains the auth information.</p>
  6888. </td>
  6889. </tr>
  6890. <tr>
  6891. <td>
  6892. <code>remoteNamespace</code></br>
  6893. <em>
  6894. string
  6895. </em>
  6896. </td>
  6897. <td>
  6898. <em>(Optional)</em>
  6899. <p>Remote namespace to fetch the secrets from</p>
  6900. </td>
  6901. </tr>
  6902. </tbody>
  6903. </table>
  6904. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  6905. </h3>
  6906. <p>
  6907. (<em>Appears on:</em>
  6908. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6909. </p>
  6910. <p>
  6911. </p>
  6912. <table>
  6913. <thead>
  6914. <tr>
  6915. <th>Field</th>
  6916. <th>Description</th>
  6917. </tr>
  6918. </thead>
  6919. <tbody>
  6920. <tr>
  6921. <td>
  6922. <code>url</code></br>
  6923. <em>
  6924. string
  6925. </em>
  6926. </td>
  6927. <td>
  6928. <em>(Optional)</em>
  6929. <p>configures the Kubernetes server Address.</p>
  6930. </td>
  6931. </tr>
  6932. <tr>
  6933. <td>
  6934. <code>caBundle</code></br>
  6935. <em>
  6936. []byte
  6937. </em>
  6938. </td>
  6939. <td>
  6940. <em>(Optional)</em>
  6941. <p>CABundle is a base64-encoded CA certificate</p>
  6942. </td>
  6943. </tr>
  6944. <tr>
  6945. <td>
  6946. <code>caProvider</code></br>
  6947. <em>
  6948. <a href="#external-secrets.io/v1.CAProvider">
  6949. CAProvider
  6950. </a>
  6951. </em>
  6952. </td>
  6953. <td>
  6954. <em>(Optional)</em>
  6955. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6956. </td>
  6957. </tr>
  6958. </tbody>
  6959. </table>
  6960. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  6961. </h3>
  6962. <p>
  6963. (<em>Appears on:</em>
  6964. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6965. </p>
  6966. <p>
  6967. </p>
  6968. <table>
  6969. <thead>
  6970. <tr>
  6971. <th>Field</th>
  6972. <th>Description</th>
  6973. </tr>
  6974. </thead>
  6975. <tbody>
  6976. <tr>
  6977. <td>
  6978. <code>secretsPath</code></br>
  6979. <em>
  6980. string
  6981. </em>
  6982. </td>
  6983. <td>
  6984. <em>(Optional)</em>
  6985. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  6986. </td>
  6987. </tr>
  6988. <tr>
  6989. <td>
  6990. <code>recursive</code></br>
  6991. <em>
  6992. bool
  6993. </em>
  6994. </td>
  6995. <td>
  6996. <em>(Optional)</em>
  6997. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  6998. </td>
  6999. </tr>
  7000. <tr>
  7001. <td>
  7002. <code>environmentSlug</code></br>
  7003. <em>
  7004. string
  7005. </em>
  7006. </td>
  7007. <td>
  7008. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7009. </td>
  7010. </tr>
  7011. <tr>
  7012. <td>
  7013. <code>projectSlug</code></br>
  7014. <em>
  7015. string
  7016. </em>
  7017. </td>
  7018. <td>
  7019. <p>ProjectSlug is the required slug identifier for the project.</p>
  7020. </td>
  7021. </tr>
  7022. <tr>
  7023. <td>
  7024. <code>expandSecretReferences</code></br>
  7025. <em>
  7026. bool
  7027. </em>
  7028. </td>
  7029. <td>
  7030. <em>(Optional)</em>
  7031. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7032. </td>
  7033. </tr>
  7034. </tbody>
  7035. </table>
  7036. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7037. (<code>bool</code> alias)</p></h3>
  7038. <p>
  7039. </p>
  7040. <table>
  7041. <thead>
  7042. <tr>
  7043. <th>Value</th>
  7044. <th>Description</th>
  7045. </tr>
  7046. </thead>
  7047. <tbody><tr><td><p>true</p></td>
  7048. <td></td>
  7049. </tr><tr><td><p>false</p></td>
  7050. <td></td>
  7051. </tr></tbody>
  7052. </table>
  7053. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7054. </h3>
  7055. <p>
  7056. (<em>Appears on:</em>
  7057. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7058. </p>
  7059. <p>
  7060. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7061. </p>
  7062. <table>
  7063. <thead>
  7064. <tr>
  7065. <th>Field</th>
  7066. <th>Description</th>
  7067. </tr>
  7068. </thead>
  7069. <tbody>
  7070. <tr>
  7071. <td>
  7072. <code>usernameSecret</code></br>
  7073. <em>
  7074. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7075. External Secrets meta/v1.SecretKeySelector
  7076. </a>
  7077. </em>
  7078. </td>
  7079. <td>
  7080. </td>
  7081. </tr>
  7082. <tr>
  7083. <td>
  7084. <code>passwordSecret</code></br>
  7085. <em>
  7086. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7087. External Secrets meta/v1.SecretKeySelector
  7088. </a>
  7089. </em>
  7090. </td>
  7091. <td>
  7092. </td>
  7093. </tr>
  7094. </tbody>
  7095. </table>
  7096. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7097. </h3>
  7098. <p>
  7099. <p>NoSecretError shall be returned when a GetSecret can not find the
  7100. desired secret. This is used for deletionPolicy.</p>
  7101. </p>
  7102. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7103. </h3>
  7104. <p>
  7105. <p>NotModifiedError to signal that the webhook received no changes,
  7106. and it should just return without doing anything.</p>
  7107. </p>
  7108. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  7109. </h3>
  7110. <p>
  7111. (<em>Appears on:</em>
  7112. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  7113. </p>
  7114. <p>
  7115. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  7116. </p>
  7117. <table>
  7118. <thead>
  7119. <tr>
  7120. <th>Field</th>
  7121. <th>Description</th>
  7122. </tr>
  7123. </thead>
  7124. <tbody>
  7125. <tr>
  7126. <td>
  7127. <code>apiKeyRef</code></br>
  7128. <em>
  7129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7130. External Secrets meta/v1.SecretKeySelector
  7131. </a>
  7132. </em>
  7133. </td>
  7134. <td>
  7135. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  7136. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  7137. </td>
  7138. </tr>
  7139. <tr>
  7140. <td>
  7141. <code>passcodeRef</code></br>
  7142. <em>
  7143. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7144. External Secrets meta/v1.SecretKeySelector
  7145. </a>
  7146. </em>
  7147. </td>
  7148. <td>
  7149. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  7150. </td>
  7151. </tr>
  7152. </tbody>
  7153. </table>
  7154. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  7155. </h3>
  7156. <p>
  7157. (<em>Appears on:</em>
  7158. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7159. </p>
  7160. <p>
  7161. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  7162. Project and Config are required if not using a Service Token.</p>
  7163. </p>
  7164. <table>
  7165. <thead>
  7166. <tr>
  7167. <th>Field</th>
  7168. <th>Description</th>
  7169. </tr>
  7170. </thead>
  7171. <tbody>
  7172. <tr>
  7173. <td>
  7174. <code>auth</code></br>
  7175. <em>
  7176. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  7177. OnboardbaseAuthSecretRef
  7178. </a>
  7179. </em>
  7180. </td>
  7181. <td>
  7182. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  7183. </td>
  7184. </tr>
  7185. <tr>
  7186. <td>
  7187. <code>apiHost</code></br>
  7188. <em>
  7189. string
  7190. </em>
  7191. </td>
  7192. <td>
  7193. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  7194. </td>
  7195. </tr>
  7196. <tr>
  7197. <td>
  7198. <code>project</code></br>
  7199. <em>
  7200. string
  7201. </em>
  7202. </td>
  7203. <td>
  7204. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  7205. </td>
  7206. </tr>
  7207. <tr>
  7208. <td>
  7209. <code>environment</code></br>
  7210. <em>
  7211. string
  7212. </em>
  7213. </td>
  7214. <td>
  7215. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  7216. </td>
  7217. </tr>
  7218. </tbody>
  7219. </table>
  7220. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  7221. </h3>
  7222. <p>
  7223. (<em>Appears on:</em>
  7224. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  7225. </p>
  7226. <p>
  7227. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  7228. </p>
  7229. <table>
  7230. <thead>
  7231. <tr>
  7232. <th>Field</th>
  7233. <th>Description</th>
  7234. </tr>
  7235. </thead>
  7236. <tbody>
  7237. <tr>
  7238. <td>
  7239. <code>secretRef</code></br>
  7240. <em>
  7241. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  7242. OnePasswordAuthSecretRef
  7243. </a>
  7244. </em>
  7245. </td>
  7246. <td>
  7247. </td>
  7248. </tr>
  7249. </tbody>
  7250. </table>
  7251. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  7252. </h3>
  7253. <p>
  7254. (<em>Appears on:</em>
  7255. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  7256. </p>
  7257. <p>
  7258. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  7259. </p>
  7260. <table>
  7261. <thead>
  7262. <tr>
  7263. <th>Field</th>
  7264. <th>Description</th>
  7265. </tr>
  7266. </thead>
  7267. <tbody>
  7268. <tr>
  7269. <td>
  7270. <code>connectTokenSecretRef</code></br>
  7271. <em>
  7272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7273. External Secrets meta/v1.SecretKeySelector
  7274. </a>
  7275. </em>
  7276. </td>
  7277. <td>
  7278. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  7279. </td>
  7280. </tr>
  7281. </tbody>
  7282. </table>
  7283. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  7284. </h3>
  7285. <p>
  7286. (<em>Appears on:</em>
  7287. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7288. </p>
  7289. <p>
  7290. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  7291. </p>
  7292. <table>
  7293. <thead>
  7294. <tr>
  7295. <th>Field</th>
  7296. <th>Description</th>
  7297. </tr>
  7298. </thead>
  7299. <tbody>
  7300. <tr>
  7301. <td>
  7302. <code>auth</code></br>
  7303. <em>
  7304. <a href="#external-secrets.io/v1.OnePasswordAuth">
  7305. OnePasswordAuth
  7306. </a>
  7307. </em>
  7308. </td>
  7309. <td>
  7310. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  7311. </td>
  7312. </tr>
  7313. <tr>
  7314. <td>
  7315. <code>connectHost</code></br>
  7316. <em>
  7317. string
  7318. </em>
  7319. </td>
  7320. <td>
  7321. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  7322. </td>
  7323. </tr>
  7324. <tr>
  7325. <td>
  7326. <code>vaults</code></br>
  7327. <em>
  7328. map[string]int
  7329. </em>
  7330. </td>
  7331. <td>
  7332. <p>Vaults defines which OnePassword vaults to search in which order</p>
  7333. </td>
  7334. </tr>
  7335. </tbody>
  7336. </table>
  7337. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  7338. </h3>
  7339. <p>
  7340. (<em>Appears on:</em>
  7341. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7342. </p>
  7343. <p>
  7344. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  7345. </p>
  7346. <table>
  7347. <thead>
  7348. <tr>
  7349. <th>Field</th>
  7350. <th>Description</th>
  7351. </tr>
  7352. </thead>
  7353. <tbody>
  7354. <tr>
  7355. <td>
  7356. <code>serviceAccountSecretRef</code></br>
  7357. <em>
  7358. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7359. External Secrets meta/v1.SecretKeySelector
  7360. </a>
  7361. </em>
  7362. </td>
  7363. <td>
  7364. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  7365. </td>
  7366. </tr>
  7367. </tbody>
  7368. </table>
  7369. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  7370. </h3>
  7371. <p>
  7372. (<em>Appears on:</em>
  7373. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7374. </p>
  7375. <p>
  7376. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  7377. </p>
  7378. <table>
  7379. <thead>
  7380. <tr>
  7381. <th>Field</th>
  7382. <th>Description</th>
  7383. </tr>
  7384. </thead>
  7385. <tbody>
  7386. <tr>
  7387. <td>
  7388. <code>vault</code></br>
  7389. <em>
  7390. string
  7391. </em>
  7392. </td>
  7393. <td>
  7394. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  7395. </td>
  7396. </tr>
  7397. <tr>
  7398. <td>
  7399. <code>integrationInfo</code></br>
  7400. <em>
  7401. <a href="#external-secrets.io/v1.IntegrationInfo">
  7402. IntegrationInfo
  7403. </a>
  7404. </em>
  7405. </td>
  7406. <td>
  7407. <em>(Optional)</em>
  7408. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  7409. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  7410. </td>
  7411. </tr>
  7412. <tr>
  7413. <td>
  7414. <code>auth</code></br>
  7415. <em>
  7416. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  7417. OnePasswordSDKAuth
  7418. </a>
  7419. </em>
  7420. </td>
  7421. <td>
  7422. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  7423. </td>
  7424. </tr>
  7425. </tbody>
  7426. </table>
  7427. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  7428. </h3>
  7429. <p>
  7430. (<em>Appears on:</em>
  7431. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7432. </p>
  7433. <p>
  7434. </p>
  7435. <table>
  7436. <thead>
  7437. <tr>
  7438. <th>Field</th>
  7439. <th>Description</th>
  7440. </tr>
  7441. </thead>
  7442. <tbody>
  7443. <tr>
  7444. <td>
  7445. <code>tenancy</code></br>
  7446. <em>
  7447. string
  7448. </em>
  7449. </td>
  7450. <td>
  7451. <p>Tenancy is the tenancy OCID where user is located.</p>
  7452. </td>
  7453. </tr>
  7454. <tr>
  7455. <td>
  7456. <code>user</code></br>
  7457. <em>
  7458. string
  7459. </em>
  7460. </td>
  7461. <td>
  7462. <p>User is an access OCID specific to the account.</p>
  7463. </td>
  7464. </tr>
  7465. <tr>
  7466. <td>
  7467. <code>secretRef</code></br>
  7468. <em>
  7469. <a href="#external-secrets.io/v1.OracleSecretRef">
  7470. OracleSecretRef
  7471. </a>
  7472. </em>
  7473. </td>
  7474. <td>
  7475. <p>SecretRef to pass through sensitive information.</p>
  7476. </td>
  7477. </tr>
  7478. </tbody>
  7479. </table>
  7480. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  7481. (<code>string</code> alias)</p></h3>
  7482. <p>
  7483. (<em>Appears on:</em>
  7484. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7485. </p>
  7486. <p>
  7487. </p>
  7488. <table>
  7489. <thead>
  7490. <tr>
  7491. <th>Value</th>
  7492. <th>Description</th>
  7493. </tr>
  7494. </thead>
  7495. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  7496. <td><p>InstancePrincipal represents a instance principal.</p>
  7497. </td>
  7498. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  7499. <td><p>UserPrincipal represents a user principal.</p>
  7500. </td>
  7501. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  7502. <td><p>WorkloadPrincipal represents a workload principal.</p>
  7503. </td>
  7504. </tr></tbody>
  7505. </table>
  7506. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  7507. </h3>
  7508. <p>
  7509. (<em>Appears on:</em>
  7510. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7511. </p>
  7512. <p>
  7513. <p>Configures an store to sync secrets using a Oracle Vault
  7514. backend.</p>
  7515. </p>
  7516. <table>
  7517. <thead>
  7518. <tr>
  7519. <th>Field</th>
  7520. <th>Description</th>
  7521. </tr>
  7522. </thead>
  7523. <tbody>
  7524. <tr>
  7525. <td>
  7526. <code>region</code></br>
  7527. <em>
  7528. string
  7529. </em>
  7530. </td>
  7531. <td>
  7532. <p>Region is the region where vault is located.</p>
  7533. </td>
  7534. </tr>
  7535. <tr>
  7536. <td>
  7537. <code>vault</code></br>
  7538. <em>
  7539. string
  7540. </em>
  7541. </td>
  7542. <td>
  7543. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  7544. </td>
  7545. </tr>
  7546. <tr>
  7547. <td>
  7548. <code>compartment</code></br>
  7549. <em>
  7550. string
  7551. </em>
  7552. </td>
  7553. <td>
  7554. <em>(Optional)</em>
  7555. <p>Compartment is the vault compartment OCID.
  7556. Required for PushSecret</p>
  7557. </td>
  7558. </tr>
  7559. <tr>
  7560. <td>
  7561. <code>encryptionKey</code></br>
  7562. <em>
  7563. string
  7564. </em>
  7565. </td>
  7566. <td>
  7567. <em>(Optional)</em>
  7568. <p>EncryptionKey is the OCID of the encryption key within the vault.
  7569. Required for PushSecret</p>
  7570. </td>
  7571. </tr>
  7572. <tr>
  7573. <td>
  7574. <code>principalType</code></br>
  7575. <em>
  7576. <a href="#external-secrets.io/v1.OraclePrincipalType">
  7577. OraclePrincipalType
  7578. </a>
  7579. </em>
  7580. </td>
  7581. <td>
  7582. <em>(Optional)</em>
  7583. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  7584. determine the principal type. This optional field must be specified if using
  7585. workload identity.</p>
  7586. </td>
  7587. </tr>
  7588. <tr>
  7589. <td>
  7590. <code>auth</code></br>
  7591. <em>
  7592. <a href="#external-secrets.io/v1.OracleAuth">
  7593. OracleAuth
  7594. </a>
  7595. </em>
  7596. </td>
  7597. <td>
  7598. <em>(Optional)</em>
  7599. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  7600. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  7601. </td>
  7602. </tr>
  7603. <tr>
  7604. <td>
  7605. <code>serviceAccountRef</code></br>
  7606. <em>
  7607. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7608. External Secrets meta/v1.ServiceAccountSelector
  7609. </a>
  7610. </em>
  7611. </td>
  7612. <td>
  7613. <em>(Optional)</em>
  7614. <p>ServiceAccountRef specified the service account
  7615. that should be used when authenticating with WorkloadIdentity.</p>
  7616. </td>
  7617. </tr>
  7618. </tbody>
  7619. </table>
  7620. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  7621. </h3>
  7622. <p>
  7623. (<em>Appears on:</em>
  7624. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  7625. </p>
  7626. <p>
  7627. </p>
  7628. <table>
  7629. <thead>
  7630. <tr>
  7631. <th>Field</th>
  7632. <th>Description</th>
  7633. </tr>
  7634. </thead>
  7635. <tbody>
  7636. <tr>
  7637. <td>
  7638. <code>privatekey</code></br>
  7639. <em>
  7640. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7641. External Secrets meta/v1.SecretKeySelector
  7642. </a>
  7643. </em>
  7644. </td>
  7645. <td>
  7646. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  7647. </td>
  7648. </tr>
  7649. <tr>
  7650. <td>
  7651. <code>fingerprint</code></br>
  7652. <em>
  7653. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7654. External Secrets meta/v1.SecretKeySelector
  7655. </a>
  7656. </em>
  7657. </td>
  7658. <td>
  7659. <p>Fingerprint is the fingerprint of the API private key.</p>
  7660. </td>
  7661. </tr>
  7662. </tbody>
  7663. </table>
  7664. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  7665. </h3>
  7666. <p>
  7667. (<em>Appears on:</em>
  7668. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  7669. </p>
  7670. <p>
  7671. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  7672. </p>
  7673. <table>
  7674. <thead>
  7675. <tr>
  7676. <th>Field</th>
  7677. <th>Description</th>
  7678. </tr>
  7679. </thead>
  7680. <tbody>
  7681. <tr>
  7682. <td>
  7683. <code>passwordSecretRef</code></br>
  7684. <em>
  7685. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7686. External Secrets meta/v1.SecretKeySelector
  7687. </a>
  7688. </em>
  7689. </td>
  7690. <td>
  7691. </td>
  7692. </tr>
  7693. <tr>
  7694. <td>
  7695. <code>privateKeySecretRef</code></br>
  7696. <em>
  7697. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7698. External Secrets meta/v1.SecretKeySelector
  7699. </a>
  7700. </em>
  7701. </td>
  7702. <td>
  7703. </td>
  7704. </tr>
  7705. </tbody>
  7706. </table>
  7707. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  7708. </h3>
  7709. <p>
  7710. (<em>Appears on:</em>
  7711. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7712. </p>
  7713. <p>
  7714. </p>
  7715. <table>
  7716. <thead>
  7717. <tr>
  7718. <th>Field</th>
  7719. <th>Description</th>
  7720. </tr>
  7721. </thead>
  7722. <tbody>
  7723. <tr>
  7724. <td>
  7725. <code>auth</code></br>
  7726. <em>
  7727. <a href="#external-secrets.io/v1.PassboltAuth">
  7728. PassboltAuth
  7729. </a>
  7730. </em>
  7731. </td>
  7732. <td>
  7733. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  7734. </td>
  7735. </tr>
  7736. <tr>
  7737. <td>
  7738. <code>host</code></br>
  7739. <em>
  7740. string
  7741. </em>
  7742. </td>
  7743. <td>
  7744. <p>Host defines the Passbolt Server to connect to</p>
  7745. </td>
  7746. </tr>
  7747. </tbody>
  7748. </table>
  7749. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  7750. </h3>
  7751. <p>
  7752. (<em>Appears on:</em>
  7753. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  7754. </p>
  7755. <p>
  7756. </p>
  7757. <table>
  7758. <thead>
  7759. <tr>
  7760. <th>Field</th>
  7761. <th>Description</th>
  7762. </tr>
  7763. </thead>
  7764. <tbody>
  7765. <tr>
  7766. <td>
  7767. <code>secretRef</code></br>
  7768. <em>
  7769. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  7770. PasswordDepotSecretRef
  7771. </a>
  7772. </em>
  7773. </td>
  7774. <td>
  7775. </td>
  7776. </tr>
  7777. </tbody>
  7778. </table>
  7779. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  7780. </h3>
  7781. <p>
  7782. (<em>Appears on:</em>
  7783. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7784. </p>
  7785. <p>
  7786. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  7787. </p>
  7788. <table>
  7789. <thead>
  7790. <tr>
  7791. <th>Field</th>
  7792. <th>Description</th>
  7793. </tr>
  7794. </thead>
  7795. <tbody>
  7796. <tr>
  7797. <td>
  7798. <code>host</code></br>
  7799. <em>
  7800. string
  7801. </em>
  7802. </td>
  7803. <td>
  7804. <p>URL configures the Password Depot instance URL.</p>
  7805. </td>
  7806. </tr>
  7807. <tr>
  7808. <td>
  7809. <code>database</code></br>
  7810. <em>
  7811. string
  7812. </em>
  7813. </td>
  7814. <td>
  7815. <p>Database to use as source</p>
  7816. </td>
  7817. </tr>
  7818. <tr>
  7819. <td>
  7820. <code>auth</code></br>
  7821. <em>
  7822. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  7823. PasswordDepotAuth
  7824. </a>
  7825. </em>
  7826. </td>
  7827. <td>
  7828. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  7829. </td>
  7830. </tr>
  7831. </tbody>
  7832. </table>
  7833. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  7834. </h3>
  7835. <p>
  7836. (<em>Appears on:</em>
  7837. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  7838. </p>
  7839. <p>
  7840. </p>
  7841. <table>
  7842. <thead>
  7843. <tr>
  7844. <th>Field</th>
  7845. <th>Description</th>
  7846. </tr>
  7847. </thead>
  7848. <tbody>
  7849. <tr>
  7850. <td>
  7851. <code>credentials</code></br>
  7852. <em>
  7853. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7854. External Secrets meta/v1.SecretKeySelector
  7855. </a>
  7856. </em>
  7857. </td>
  7858. <td>
  7859. <em>(Optional)</em>
  7860. <p>Username / Password is used for authentication.</p>
  7861. </td>
  7862. </tr>
  7863. </tbody>
  7864. </table>
  7865. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  7866. </h3>
  7867. <p>
  7868. (<em>Appears on:</em>
  7869. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  7870. </p>
  7871. <p>
  7872. <p>PreviderAuth contains a secretRef for credentials.</p>
  7873. </p>
  7874. <table>
  7875. <thead>
  7876. <tr>
  7877. <th>Field</th>
  7878. <th>Description</th>
  7879. </tr>
  7880. </thead>
  7881. <tbody>
  7882. <tr>
  7883. <td>
  7884. <code>secretRef</code></br>
  7885. <em>
  7886. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  7887. PreviderAuthSecretRef
  7888. </a>
  7889. </em>
  7890. </td>
  7891. <td>
  7892. <em>(Optional)</em>
  7893. </td>
  7894. </tr>
  7895. </tbody>
  7896. </table>
  7897. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  7898. </h3>
  7899. <p>
  7900. (<em>Appears on:</em>
  7901. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  7902. </p>
  7903. <p>
  7904. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  7905. </p>
  7906. <table>
  7907. <thead>
  7908. <tr>
  7909. <th>Field</th>
  7910. <th>Description</th>
  7911. </tr>
  7912. </thead>
  7913. <tbody>
  7914. <tr>
  7915. <td>
  7916. <code>accessToken</code></br>
  7917. <em>
  7918. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7919. External Secrets meta/v1.SecretKeySelector
  7920. </a>
  7921. </em>
  7922. </td>
  7923. <td>
  7924. <p>The AccessToken is used for authentication</p>
  7925. </td>
  7926. </tr>
  7927. </tbody>
  7928. </table>
  7929. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  7930. </h3>
  7931. <p>
  7932. (<em>Appears on:</em>
  7933. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7934. </p>
  7935. <p>
  7936. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  7937. </p>
  7938. <table>
  7939. <thead>
  7940. <tr>
  7941. <th>Field</th>
  7942. <th>Description</th>
  7943. </tr>
  7944. </thead>
  7945. <tbody>
  7946. <tr>
  7947. <td>
  7948. <code>auth</code></br>
  7949. <em>
  7950. <a href="#external-secrets.io/v1.PreviderAuth">
  7951. PreviderAuth
  7952. </a>
  7953. </em>
  7954. </td>
  7955. <td>
  7956. </td>
  7957. </tr>
  7958. <tr>
  7959. <td>
  7960. <code>baseUri</code></br>
  7961. <em>
  7962. string
  7963. </em>
  7964. </td>
  7965. <td>
  7966. <em>(Optional)</em>
  7967. </td>
  7968. </tr>
  7969. </tbody>
  7970. </table>
  7971. <h3 id="external-secrets.io/v1.Provider">Provider
  7972. </h3>
  7973. <p>
  7974. <p>Provider is a common interface for interacting with secret backends.</p>
  7975. </p>
  7976. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  7977. </h3>
  7978. <p>
  7979. (<em>Appears on:</em>
  7980. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7981. </p>
  7982. <p>
  7983. </p>
  7984. <table>
  7985. <thead>
  7986. <tr>
  7987. <th>Field</th>
  7988. <th>Description</th>
  7989. </tr>
  7990. </thead>
  7991. <tbody>
  7992. <tr>
  7993. <td>
  7994. <code>apiUrl</code></br>
  7995. <em>
  7996. string
  7997. </em>
  7998. </td>
  7999. <td>
  8000. <p>APIURL is the URL of the Pulumi API.</p>
  8001. </td>
  8002. </tr>
  8003. <tr>
  8004. <td>
  8005. <code>accessToken</code></br>
  8006. <em>
  8007. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8008. PulumiProviderSecretRef
  8009. </a>
  8010. </em>
  8011. </td>
  8012. <td>
  8013. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8014. </td>
  8015. </tr>
  8016. <tr>
  8017. <td>
  8018. <code>organization</code></br>
  8019. <em>
  8020. string
  8021. </em>
  8022. </td>
  8023. <td>
  8024. <p>Organization are a space to collaborate on shared projects and stacks.
  8025. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  8026. </td>
  8027. </tr>
  8028. <tr>
  8029. <td>
  8030. <code>project</code></br>
  8031. <em>
  8032. string
  8033. </em>
  8034. </td>
  8035. <td>
  8036. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  8037. </td>
  8038. </tr>
  8039. <tr>
  8040. <td>
  8041. <code>environment</code></br>
  8042. <em>
  8043. string
  8044. </em>
  8045. </td>
  8046. <td>
  8047. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  8048. dynamically retrieved values from supported providers including all major clouds,
  8049. and other Pulumi ESC environments.
  8050. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  8051. </td>
  8052. </tr>
  8053. </tbody>
  8054. </table>
  8055. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  8056. </h3>
  8057. <p>
  8058. (<em>Appears on:</em>
  8059. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  8060. </p>
  8061. <p>
  8062. </p>
  8063. <table>
  8064. <thead>
  8065. <tr>
  8066. <th>Field</th>
  8067. <th>Description</th>
  8068. </tr>
  8069. </thead>
  8070. <tbody>
  8071. <tr>
  8072. <td>
  8073. <code>secretRef</code></br>
  8074. <em>
  8075. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8076. External Secrets meta/v1.SecretKeySelector
  8077. </a>
  8078. </em>
  8079. </td>
  8080. <td>
  8081. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  8082. </td>
  8083. </tr>
  8084. </tbody>
  8085. </table>
  8086. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  8087. </h3>
  8088. <p>
  8089. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  8090. </p>
  8091. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  8092. </h3>
  8093. <p>
  8094. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  8095. </p>
  8096. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  8097. </h3>
  8098. <p>
  8099. (<em>Appears on:</em>
  8100. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8101. </p>
  8102. <p>
  8103. </p>
  8104. <table>
  8105. <thead>
  8106. <tr>
  8107. <th>Field</th>
  8108. <th>Description</th>
  8109. </tr>
  8110. </thead>
  8111. <tbody>
  8112. <tr>
  8113. <td>
  8114. <code>apiUrl</code></br>
  8115. <em>
  8116. string
  8117. </em>
  8118. </td>
  8119. <td>
  8120. <em>(Optional)</em>
  8121. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  8122. </td>
  8123. </tr>
  8124. <tr>
  8125. <td>
  8126. <code>region</code></br>
  8127. <em>
  8128. string
  8129. </em>
  8130. </td>
  8131. <td>
  8132. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  8133. </td>
  8134. </tr>
  8135. <tr>
  8136. <td>
  8137. <code>projectId</code></br>
  8138. <em>
  8139. string
  8140. </em>
  8141. </td>
  8142. <td>
  8143. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  8144. </td>
  8145. </tr>
  8146. <tr>
  8147. <td>
  8148. <code>accessKey</code></br>
  8149. <em>
  8150. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8151. ScalewayProviderSecretRef
  8152. </a>
  8153. </em>
  8154. </td>
  8155. <td>
  8156. <p>AccessKey is the non-secret part of the api key.</p>
  8157. </td>
  8158. </tr>
  8159. <tr>
  8160. <td>
  8161. <code>secretKey</code></br>
  8162. <em>
  8163. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8164. ScalewayProviderSecretRef
  8165. </a>
  8166. </em>
  8167. </td>
  8168. <td>
  8169. <p>SecretKey is the non-secret part of the api key.</p>
  8170. </td>
  8171. </tr>
  8172. </tbody>
  8173. </table>
  8174. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  8175. </h3>
  8176. <p>
  8177. (<em>Appears on:</em>
  8178. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  8179. </p>
  8180. <p>
  8181. </p>
  8182. <table>
  8183. <thead>
  8184. <tr>
  8185. <th>Field</th>
  8186. <th>Description</th>
  8187. </tr>
  8188. </thead>
  8189. <tbody>
  8190. <tr>
  8191. <td>
  8192. <code>value</code></br>
  8193. <em>
  8194. string
  8195. </em>
  8196. </td>
  8197. <td>
  8198. <em>(Optional)</em>
  8199. <p>Value can be specified directly to set a value without using a secret.</p>
  8200. </td>
  8201. </tr>
  8202. <tr>
  8203. <td>
  8204. <code>secretRef</code></br>
  8205. <em>
  8206. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8207. External Secrets meta/v1.SecretKeySelector
  8208. </a>
  8209. </em>
  8210. </td>
  8211. <td>
  8212. <em>(Optional)</em>
  8213. <p>SecretRef references a key in a secret that will be used as value.</p>
  8214. </td>
  8215. </tr>
  8216. </tbody>
  8217. </table>
  8218. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  8219. </h3>
  8220. <p>
  8221. (<em>Appears on:</em>
  8222. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8223. </p>
  8224. <p>
  8225. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  8226. </p>
  8227. <table>
  8228. <thead>
  8229. <tr>
  8230. <th>Field</th>
  8231. <th>Description</th>
  8232. </tr>
  8233. </thead>
  8234. <tbody>
  8235. <tr>
  8236. <td>
  8237. <code>username</code></br>
  8238. <em>
  8239. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8240. SecretServerProviderRef
  8241. </a>
  8242. </em>
  8243. </td>
  8244. <td>
  8245. <p>Username is the secret server account username.</p>
  8246. </td>
  8247. </tr>
  8248. <tr>
  8249. <td>
  8250. <code>password</code></br>
  8251. <em>
  8252. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8253. SecretServerProviderRef
  8254. </a>
  8255. </em>
  8256. </td>
  8257. <td>
  8258. <p>Password is the secret server account password.</p>
  8259. </td>
  8260. </tr>
  8261. <tr>
  8262. <td>
  8263. <code>serverURL</code></br>
  8264. <em>
  8265. string
  8266. </em>
  8267. </td>
  8268. <td>
  8269. <p>ServerURL
  8270. URL to your secret server installation</p>
  8271. </td>
  8272. </tr>
  8273. </tbody>
  8274. </table>
  8275. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  8276. </h3>
  8277. <p>
  8278. (<em>Appears on:</em>
  8279. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  8280. </p>
  8281. <p>
  8282. </p>
  8283. <table>
  8284. <thead>
  8285. <tr>
  8286. <th>Field</th>
  8287. <th>Description</th>
  8288. </tr>
  8289. </thead>
  8290. <tbody>
  8291. <tr>
  8292. <td>
  8293. <code>value</code></br>
  8294. <em>
  8295. string
  8296. </em>
  8297. </td>
  8298. <td>
  8299. <em>(Optional)</em>
  8300. <p>Value can be specified directly to set a value without using a secret.</p>
  8301. </td>
  8302. </tr>
  8303. <tr>
  8304. <td>
  8305. <code>secretRef</code></br>
  8306. <em>
  8307. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8308. External Secrets meta/v1.SecretKeySelector
  8309. </a>
  8310. </em>
  8311. </td>
  8312. <td>
  8313. <em>(Optional)</em>
  8314. <p>SecretRef references a key in a secret that will be used as value.</p>
  8315. </td>
  8316. </tr>
  8317. </tbody>
  8318. </table>
  8319. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  8320. </h3>
  8321. <p>
  8322. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  8323. </p>
  8324. <table>
  8325. <thead>
  8326. <tr>
  8327. <th>Field</th>
  8328. <th>Description</th>
  8329. </tr>
  8330. </thead>
  8331. <tbody>
  8332. <tr>
  8333. <td>
  8334. <code>metadata</code></br>
  8335. <em>
  8336. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  8337. Kubernetes meta/v1.ObjectMeta
  8338. </a>
  8339. </em>
  8340. </td>
  8341. <td>
  8342. Refer to the Kubernetes API documentation for the fields of the
  8343. <code>metadata</code> field.
  8344. </td>
  8345. </tr>
  8346. <tr>
  8347. <td>
  8348. <code>spec</code></br>
  8349. <em>
  8350. <a href="#external-secrets.io/v1.SecretStoreSpec">
  8351. SecretStoreSpec
  8352. </a>
  8353. </em>
  8354. </td>
  8355. <td>
  8356. <br/>
  8357. <br/>
  8358. <table>
  8359. <tr>
  8360. <td>
  8361. <code>controller</code></br>
  8362. <em>
  8363. string
  8364. </em>
  8365. </td>
  8366. <td>
  8367. <em>(Optional)</em>
  8368. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8369. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8370. </td>
  8371. </tr>
  8372. <tr>
  8373. <td>
  8374. <code>provider</code></br>
  8375. <em>
  8376. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8377. SecretStoreProvider
  8378. </a>
  8379. </em>
  8380. </td>
  8381. <td>
  8382. <p>Used to configure the provider. Only one provider may be set</p>
  8383. </td>
  8384. </tr>
  8385. <tr>
  8386. <td>
  8387. <code>retrySettings</code></br>
  8388. <em>
  8389. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8390. SecretStoreRetrySettings
  8391. </a>
  8392. </em>
  8393. </td>
  8394. <td>
  8395. <em>(Optional)</em>
  8396. <p>Used to configure http retries if failed</p>
  8397. </td>
  8398. </tr>
  8399. <tr>
  8400. <td>
  8401. <code>refreshInterval</code></br>
  8402. <em>
  8403. int
  8404. </em>
  8405. </td>
  8406. <td>
  8407. <em>(Optional)</em>
  8408. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8409. </td>
  8410. </tr>
  8411. <tr>
  8412. <td>
  8413. <code>conditions</code></br>
  8414. <em>
  8415. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8416. []ClusterSecretStoreCondition
  8417. </a>
  8418. </em>
  8419. </td>
  8420. <td>
  8421. <em>(Optional)</em>
  8422. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8423. </td>
  8424. </tr>
  8425. </table>
  8426. </td>
  8427. </tr>
  8428. <tr>
  8429. <td>
  8430. <code>status</code></br>
  8431. <em>
  8432. <a href="#external-secrets.io/v1.SecretStoreStatus">
  8433. SecretStoreStatus
  8434. </a>
  8435. </em>
  8436. </td>
  8437. <td>
  8438. </td>
  8439. </tr>
  8440. </tbody>
  8441. </table>
  8442. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  8443. (<code>string</code> alias)</p></h3>
  8444. <p>
  8445. (<em>Appears on:</em>
  8446. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8447. </p>
  8448. <p>
  8449. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  8450. </p>
  8451. <table>
  8452. <thead>
  8453. <tr>
  8454. <th>Value</th>
  8455. <th>Description</th>
  8456. </tr>
  8457. </thead>
  8458. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  8459. <td></td>
  8460. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  8461. <td></td>
  8462. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  8463. <td></td>
  8464. </tr></tbody>
  8465. </table>
  8466. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  8467. (<code>string</code> alias)</p></h3>
  8468. <p>
  8469. (<em>Appears on:</em>
  8470. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  8471. </p>
  8472. <p>
  8473. </p>
  8474. <table>
  8475. <thead>
  8476. <tr>
  8477. <th>Value</th>
  8478. <th>Description</th>
  8479. </tr>
  8480. </thead>
  8481. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  8482. <td></td>
  8483. </tr></tbody>
  8484. </table>
  8485. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  8486. </h3>
  8487. <p>
  8488. (<em>Appears on:</em>
  8489. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8490. </p>
  8491. <p>
  8492. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  8493. </p>
  8494. <table>
  8495. <thead>
  8496. <tr>
  8497. <th>Field</th>
  8498. <th>Description</th>
  8499. </tr>
  8500. </thead>
  8501. <tbody>
  8502. <tr>
  8503. <td>
  8504. <code>aws</code></br>
  8505. <em>
  8506. <a href="#external-secrets.io/v1.AWSProvider">
  8507. AWSProvider
  8508. </a>
  8509. </em>
  8510. </td>
  8511. <td>
  8512. <em>(Optional)</em>
  8513. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  8514. </td>
  8515. </tr>
  8516. <tr>
  8517. <td>
  8518. <code>azurekv</code></br>
  8519. <em>
  8520. <a href="#external-secrets.io/v1.AzureKVProvider">
  8521. AzureKVProvider
  8522. </a>
  8523. </em>
  8524. </td>
  8525. <td>
  8526. <em>(Optional)</em>
  8527. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  8528. </td>
  8529. </tr>
  8530. <tr>
  8531. <td>
  8532. <code>akeyless</code></br>
  8533. <em>
  8534. <a href="#external-secrets.io/v1.AkeylessProvider">
  8535. AkeylessProvider
  8536. </a>
  8537. </em>
  8538. </td>
  8539. <td>
  8540. <em>(Optional)</em>
  8541. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  8542. </td>
  8543. </tr>
  8544. <tr>
  8545. <td>
  8546. <code>bitwardensecretsmanager</code></br>
  8547. <em>
  8548. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  8549. BitwardenSecretsManagerProvider
  8550. </a>
  8551. </em>
  8552. </td>
  8553. <td>
  8554. <em>(Optional)</em>
  8555. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  8556. </td>
  8557. </tr>
  8558. <tr>
  8559. <td>
  8560. <code>vault</code></br>
  8561. <em>
  8562. <a href="#external-secrets.io/v1.VaultProvider">
  8563. VaultProvider
  8564. </a>
  8565. </em>
  8566. </td>
  8567. <td>
  8568. <em>(Optional)</em>
  8569. <p>Vault configures this store to sync secrets using Hashi provider</p>
  8570. </td>
  8571. </tr>
  8572. <tr>
  8573. <td>
  8574. <code>gcpsm</code></br>
  8575. <em>
  8576. <a href="#external-secrets.io/v1.GCPSMProvider">
  8577. GCPSMProvider
  8578. </a>
  8579. </em>
  8580. </td>
  8581. <td>
  8582. <em>(Optional)</em>
  8583. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  8584. </td>
  8585. </tr>
  8586. <tr>
  8587. <td>
  8588. <code>oracle</code></br>
  8589. <em>
  8590. <a href="#external-secrets.io/v1.OracleProvider">
  8591. OracleProvider
  8592. </a>
  8593. </em>
  8594. </td>
  8595. <td>
  8596. <em>(Optional)</em>
  8597. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  8598. </td>
  8599. </tr>
  8600. <tr>
  8601. <td>
  8602. <code>ibm</code></br>
  8603. <em>
  8604. <a href="#external-secrets.io/v1.IBMProvider">
  8605. IBMProvider
  8606. </a>
  8607. </em>
  8608. </td>
  8609. <td>
  8610. <em>(Optional)</em>
  8611. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  8612. </td>
  8613. </tr>
  8614. <tr>
  8615. <td>
  8616. <code>yandexcertificatemanager</code></br>
  8617. <em>
  8618. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  8619. YandexCertificateManagerProvider
  8620. </a>
  8621. </em>
  8622. </td>
  8623. <td>
  8624. <em>(Optional)</em>
  8625. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  8626. </td>
  8627. </tr>
  8628. <tr>
  8629. <td>
  8630. <code>yandexlockbox</code></br>
  8631. <em>
  8632. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  8633. YandexLockboxProvider
  8634. </a>
  8635. </em>
  8636. </td>
  8637. <td>
  8638. <em>(Optional)</em>
  8639. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  8640. </td>
  8641. </tr>
  8642. <tr>
  8643. <td>
  8644. <code>github</code></br>
  8645. <em>
  8646. <a href="#external-secrets.io/v1.GithubProvider">
  8647. GithubProvider
  8648. </a>
  8649. </em>
  8650. </td>
  8651. <td>
  8652. <em>(Optional)</em>
  8653. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  8654. </td>
  8655. </tr>
  8656. <tr>
  8657. <td>
  8658. <code>gitlab</code></br>
  8659. <em>
  8660. <a href="#external-secrets.io/v1.GitlabProvider">
  8661. GitlabProvider
  8662. </a>
  8663. </em>
  8664. </td>
  8665. <td>
  8666. <em>(Optional)</em>
  8667. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  8668. </td>
  8669. </tr>
  8670. <tr>
  8671. <td>
  8672. <code>alibaba</code></br>
  8673. <em>
  8674. <a href="#external-secrets.io/v1.AlibabaProvider">
  8675. AlibabaProvider
  8676. </a>
  8677. </em>
  8678. </td>
  8679. <td>
  8680. <em>(Optional)</em>
  8681. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  8682. </td>
  8683. </tr>
  8684. <tr>
  8685. <td>
  8686. <code>onepassword</code></br>
  8687. <em>
  8688. <a href="#external-secrets.io/v1.OnePasswordProvider">
  8689. OnePasswordProvider
  8690. </a>
  8691. </em>
  8692. </td>
  8693. <td>
  8694. <em>(Optional)</em>
  8695. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  8696. </td>
  8697. </tr>
  8698. <tr>
  8699. <td>
  8700. <code>onepasswordSDK</code></br>
  8701. <em>
  8702. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  8703. OnePasswordSDKProvider
  8704. </a>
  8705. </em>
  8706. </td>
  8707. <td>
  8708. <em>(Optional)</em>
  8709. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  8710. </td>
  8711. </tr>
  8712. <tr>
  8713. <td>
  8714. <code>webhook</code></br>
  8715. <em>
  8716. <a href="#external-secrets.io/v1.WebhookProvider">
  8717. WebhookProvider
  8718. </a>
  8719. </em>
  8720. </td>
  8721. <td>
  8722. <em>(Optional)</em>
  8723. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  8724. </td>
  8725. </tr>
  8726. <tr>
  8727. <td>
  8728. <code>kubernetes</code></br>
  8729. <em>
  8730. <a href="#external-secrets.io/v1.KubernetesProvider">
  8731. KubernetesProvider
  8732. </a>
  8733. </em>
  8734. </td>
  8735. <td>
  8736. <em>(Optional)</em>
  8737. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  8738. </td>
  8739. </tr>
  8740. <tr>
  8741. <td>
  8742. <code>fake</code></br>
  8743. <em>
  8744. <a href="#external-secrets.io/v1.FakeProvider">
  8745. FakeProvider
  8746. </a>
  8747. </em>
  8748. </td>
  8749. <td>
  8750. <em>(Optional)</em>
  8751. <p>Fake configures a store with static key/value pairs</p>
  8752. </td>
  8753. </tr>
  8754. <tr>
  8755. <td>
  8756. <code>senhasegura</code></br>
  8757. <em>
  8758. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  8759. SenhaseguraProvider
  8760. </a>
  8761. </em>
  8762. </td>
  8763. <td>
  8764. <em>(Optional)</em>
  8765. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  8766. </td>
  8767. </tr>
  8768. <tr>
  8769. <td>
  8770. <code>scaleway</code></br>
  8771. <em>
  8772. <a href="#external-secrets.io/v1.ScalewayProvider">
  8773. ScalewayProvider
  8774. </a>
  8775. </em>
  8776. </td>
  8777. <td>
  8778. <em>(Optional)</em>
  8779. <p>Scaleway</p>
  8780. </td>
  8781. </tr>
  8782. <tr>
  8783. <td>
  8784. <code>doppler</code></br>
  8785. <em>
  8786. <a href="#external-secrets.io/v1.DopplerProvider">
  8787. DopplerProvider
  8788. </a>
  8789. </em>
  8790. </td>
  8791. <td>
  8792. <em>(Optional)</em>
  8793. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  8794. </td>
  8795. </tr>
  8796. <tr>
  8797. <td>
  8798. <code>previder</code></br>
  8799. <em>
  8800. <a href="#external-secrets.io/v1.PreviderProvider">
  8801. PreviderProvider
  8802. </a>
  8803. </em>
  8804. </td>
  8805. <td>
  8806. <em>(Optional)</em>
  8807. <p>Previder configures this store to sync secrets using the Previder provider</p>
  8808. </td>
  8809. </tr>
  8810. <tr>
  8811. <td>
  8812. <code>onboardbase</code></br>
  8813. <em>
  8814. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  8815. OnboardbaseProvider
  8816. </a>
  8817. </em>
  8818. </td>
  8819. <td>
  8820. <em>(Optional)</em>
  8821. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  8822. </td>
  8823. </tr>
  8824. <tr>
  8825. <td>
  8826. <code>keepersecurity</code></br>
  8827. <em>
  8828. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  8829. KeeperSecurityProvider
  8830. </a>
  8831. </em>
  8832. </td>
  8833. <td>
  8834. <em>(Optional)</em>
  8835. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  8836. </td>
  8837. </tr>
  8838. <tr>
  8839. <td>
  8840. <code>conjur</code></br>
  8841. <em>
  8842. <a href="#external-secrets.io/v1.ConjurProvider">
  8843. ConjurProvider
  8844. </a>
  8845. </em>
  8846. </td>
  8847. <td>
  8848. <em>(Optional)</em>
  8849. <p>Conjur configures this store to sync secrets using conjur provider</p>
  8850. </td>
  8851. </tr>
  8852. <tr>
  8853. <td>
  8854. <code>delinea</code></br>
  8855. <em>
  8856. <a href="#external-secrets.io/v1.DelineaProvider">
  8857. DelineaProvider
  8858. </a>
  8859. </em>
  8860. </td>
  8861. <td>
  8862. <em>(Optional)</em>
  8863. <p>Delinea DevOps Secrets Vault
  8864. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  8865. </td>
  8866. </tr>
  8867. <tr>
  8868. <td>
  8869. <code>secretserver</code></br>
  8870. <em>
  8871. <a href="#external-secrets.io/v1.SecretServerProvider">
  8872. SecretServerProvider
  8873. </a>
  8874. </em>
  8875. </td>
  8876. <td>
  8877. <em>(Optional)</em>
  8878. <p>SecretServer configures this store to sync secrets using SecretServer provider
  8879. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  8880. </td>
  8881. </tr>
  8882. <tr>
  8883. <td>
  8884. <code>chef</code></br>
  8885. <em>
  8886. <a href="#external-secrets.io/v1.ChefProvider">
  8887. ChefProvider
  8888. </a>
  8889. </em>
  8890. </td>
  8891. <td>
  8892. <em>(Optional)</em>
  8893. <p>Chef configures this store to sync secrets with chef server</p>
  8894. </td>
  8895. </tr>
  8896. <tr>
  8897. <td>
  8898. <code>pulumi</code></br>
  8899. <em>
  8900. <a href="#external-secrets.io/v1.PulumiProvider">
  8901. PulumiProvider
  8902. </a>
  8903. </em>
  8904. </td>
  8905. <td>
  8906. <em>(Optional)</em>
  8907. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  8908. </td>
  8909. </tr>
  8910. <tr>
  8911. <td>
  8912. <code>fortanix</code></br>
  8913. <em>
  8914. <a href="#external-secrets.io/v1.FortanixProvider">
  8915. FortanixProvider
  8916. </a>
  8917. </em>
  8918. </td>
  8919. <td>
  8920. <em>(Optional)</em>
  8921. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  8922. </td>
  8923. </tr>
  8924. <tr>
  8925. <td>
  8926. <code>passworddepot</code></br>
  8927. <em>
  8928. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  8929. PasswordDepotProvider
  8930. </a>
  8931. </em>
  8932. </td>
  8933. <td>
  8934. <em>(Optional)</em>
  8935. </td>
  8936. </tr>
  8937. <tr>
  8938. <td>
  8939. <code>passbolt</code></br>
  8940. <em>
  8941. <a href="#external-secrets.io/v1.PassboltProvider">
  8942. PassboltProvider
  8943. </a>
  8944. </em>
  8945. </td>
  8946. <td>
  8947. <em>(Optional)</em>
  8948. </td>
  8949. </tr>
  8950. <tr>
  8951. <td>
  8952. <code>device42</code></br>
  8953. <em>
  8954. <a href="#external-secrets.io/v1.Device42Provider">
  8955. Device42Provider
  8956. </a>
  8957. </em>
  8958. </td>
  8959. <td>
  8960. <em>(Optional)</em>
  8961. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  8962. </td>
  8963. </tr>
  8964. <tr>
  8965. <td>
  8966. <code>infisical</code></br>
  8967. <em>
  8968. <a href="#external-secrets.io/v1.InfisicalProvider">
  8969. InfisicalProvider
  8970. </a>
  8971. </em>
  8972. </td>
  8973. <td>
  8974. <em>(Optional)</em>
  8975. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  8976. </td>
  8977. </tr>
  8978. <tr>
  8979. <td>
  8980. <code>beyondtrust</code></br>
  8981. <em>
  8982. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  8983. BeyondtrustProvider
  8984. </a>
  8985. </em>
  8986. </td>
  8987. <td>
  8988. <em>(Optional)</em>
  8989. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  8990. </td>
  8991. </tr>
  8992. <tr>
  8993. <td>
  8994. <code>cloudrusm</code></br>
  8995. <em>
  8996. <a href="#external-secrets.io/v1.CloudruSMProvider">
  8997. CloudruSMProvider
  8998. </a>
  8999. </em>
  9000. </td>
  9001. <td>
  9002. <em>(Optional)</em>
  9003. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  9004. </td>
  9005. </tr>
  9006. </tbody>
  9007. </table>
  9008. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  9009. </h3>
  9010. <p>
  9011. (<em>Appears on:</em>
  9012. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  9013. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  9014. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  9015. </p>
  9016. <p>
  9017. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  9018. </p>
  9019. <table>
  9020. <thead>
  9021. <tr>
  9022. <th>Field</th>
  9023. <th>Description</th>
  9024. </tr>
  9025. </thead>
  9026. <tbody>
  9027. <tr>
  9028. <td>
  9029. <code>name</code></br>
  9030. <em>
  9031. string
  9032. </em>
  9033. </td>
  9034. <td>
  9035. <p>Name of the SecretStore resource</p>
  9036. </td>
  9037. </tr>
  9038. <tr>
  9039. <td>
  9040. <code>kind</code></br>
  9041. <em>
  9042. string
  9043. </em>
  9044. </td>
  9045. <td>
  9046. <em>(Optional)</em>
  9047. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  9048. Defaults to <code>SecretStore</code></p>
  9049. </td>
  9050. </tr>
  9051. </tbody>
  9052. </table>
  9053. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  9054. </h3>
  9055. <p>
  9056. (<em>Appears on:</em>
  9057. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9058. </p>
  9059. <p>
  9060. </p>
  9061. <table>
  9062. <thead>
  9063. <tr>
  9064. <th>Field</th>
  9065. <th>Description</th>
  9066. </tr>
  9067. </thead>
  9068. <tbody>
  9069. <tr>
  9070. <td>
  9071. <code>maxRetries</code></br>
  9072. <em>
  9073. int32
  9074. </em>
  9075. </td>
  9076. <td>
  9077. </td>
  9078. </tr>
  9079. <tr>
  9080. <td>
  9081. <code>retryInterval</code></br>
  9082. <em>
  9083. string
  9084. </em>
  9085. </td>
  9086. <td>
  9087. </td>
  9088. </tr>
  9089. </tbody>
  9090. </table>
  9091. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  9092. </h3>
  9093. <p>
  9094. (<em>Appears on:</em>
  9095. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9096. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9097. </p>
  9098. <p>
  9099. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  9100. </p>
  9101. <table>
  9102. <thead>
  9103. <tr>
  9104. <th>Field</th>
  9105. <th>Description</th>
  9106. </tr>
  9107. </thead>
  9108. <tbody>
  9109. <tr>
  9110. <td>
  9111. <code>controller</code></br>
  9112. <em>
  9113. string
  9114. </em>
  9115. </td>
  9116. <td>
  9117. <em>(Optional)</em>
  9118. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9119. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9120. </td>
  9121. </tr>
  9122. <tr>
  9123. <td>
  9124. <code>provider</code></br>
  9125. <em>
  9126. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9127. SecretStoreProvider
  9128. </a>
  9129. </em>
  9130. </td>
  9131. <td>
  9132. <p>Used to configure the provider. Only one provider may be set</p>
  9133. </td>
  9134. </tr>
  9135. <tr>
  9136. <td>
  9137. <code>retrySettings</code></br>
  9138. <em>
  9139. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9140. SecretStoreRetrySettings
  9141. </a>
  9142. </em>
  9143. </td>
  9144. <td>
  9145. <em>(Optional)</em>
  9146. <p>Used to configure http retries if failed</p>
  9147. </td>
  9148. </tr>
  9149. <tr>
  9150. <td>
  9151. <code>refreshInterval</code></br>
  9152. <em>
  9153. int
  9154. </em>
  9155. </td>
  9156. <td>
  9157. <em>(Optional)</em>
  9158. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9159. </td>
  9160. </tr>
  9161. <tr>
  9162. <td>
  9163. <code>conditions</code></br>
  9164. <em>
  9165. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9166. []ClusterSecretStoreCondition
  9167. </a>
  9168. </em>
  9169. </td>
  9170. <td>
  9171. <em>(Optional)</em>
  9172. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9173. </td>
  9174. </tr>
  9175. </tbody>
  9176. </table>
  9177. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  9178. </h3>
  9179. <p>
  9180. (<em>Appears on:</em>
  9181. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9182. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9183. </p>
  9184. <p>
  9185. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  9186. </p>
  9187. <table>
  9188. <thead>
  9189. <tr>
  9190. <th>Field</th>
  9191. <th>Description</th>
  9192. </tr>
  9193. </thead>
  9194. <tbody>
  9195. <tr>
  9196. <td>
  9197. <code>conditions</code></br>
  9198. <em>
  9199. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  9200. []SecretStoreStatusCondition
  9201. </a>
  9202. </em>
  9203. </td>
  9204. <td>
  9205. <em>(Optional)</em>
  9206. </td>
  9207. </tr>
  9208. <tr>
  9209. <td>
  9210. <code>capabilities</code></br>
  9211. <em>
  9212. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  9213. SecretStoreCapabilities
  9214. </a>
  9215. </em>
  9216. </td>
  9217. <td>
  9218. <em>(Optional)</em>
  9219. </td>
  9220. </tr>
  9221. </tbody>
  9222. </table>
  9223. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  9224. </h3>
  9225. <p>
  9226. (<em>Appears on:</em>
  9227. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9228. </p>
  9229. <p>
  9230. </p>
  9231. <table>
  9232. <thead>
  9233. <tr>
  9234. <th>Field</th>
  9235. <th>Description</th>
  9236. </tr>
  9237. </thead>
  9238. <tbody>
  9239. <tr>
  9240. <td>
  9241. <code>type</code></br>
  9242. <em>
  9243. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  9244. SecretStoreConditionType
  9245. </a>
  9246. </em>
  9247. </td>
  9248. <td>
  9249. </td>
  9250. </tr>
  9251. <tr>
  9252. <td>
  9253. <code>status</code></br>
  9254. <em>
  9255. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  9256. Kubernetes core/v1.ConditionStatus
  9257. </a>
  9258. </em>
  9259. </td>
  9260. <td>
  9261. </td>
  9262. </tr>
  9263. <tr>
  9264. <td>
  9265. <code>reason</code></br>
  9266. <em>
  9267. string
  9268. </em>
  9269. </td>
  9270. <td>
  9271. <em>(Optional)</em>
  9272. </td>
  9273. </tr>
  9274. <tr>
  9275. <td>
  9276. <code>message</code></br>
  9277. <em>
  9278. string
  9279. </em>
  9280. </td>
  9281. <td>
  9282. <em>(Optional)</em>
  9283. </td>
  9284. </tr>
  9285. <tr>
  9286. <td>
  9287. <code>lastTransitionTime</code></br>
  9288. <em>
  9289. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  9290. Kubernetes meta/v1.Time
  9291. </a>
  9292. </em>
  9293. </td>
  9294. <td>
  9295. <em>(Optional)</em>
  9296. </td>
  9297. </tr>
  9298. </tbody>
  9299. </table>
  9300. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  9301. </h3>
  9302. <p>
  9303. <p>SecretsClient provides access to secrets.</p>
  9304. </p>
  9305. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  9306. </h3>
  9307. <p>
  9308. (<em>Appears on:</em>
  9309. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  9310. </p>
  9311. <p>
  9312. <p>SecretsManager defines how the provider behaves when interacting with AWS
  9313. SecretsManager. Some of these settings are only applicable to controlling how
  9314. secrets are deleted, and hence only apply to PushSecret (and only when
  9315. deletionPolicy is set to Delete).</p>
  9316. </p>
  9317. <table>
  9318. <thead>
  9319. <tr>
  9320. <th>Field</th>
  9321. <th>Description</th>
  9322. </tr>
  9323. </thead>
  9324. <tbody>
  9325. <tr>
  9326. <td>
  9327. <code>forceDeleteWithoutRecovery</code></br>
  9328. <em>
  9329. bool
  9330. </em>
  9331. </td>
  9332. <td>
  9333. <em>(Optional)</em>
  9334. <p>Specifies whether to delete the secret without any recovery window. You
  9335. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  9336. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  9337. recovery window.
  9338. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  9339. </td>
  9340. </tr>
  9341. <tr>
  9342. <td>
  9343. <code>recoveryWindowInDays</code></br>
  9344. <em>
  9345. int64
  9346. </em>
  9347. </td>
  9348. <td>
  9349. <em>(Optional)</em>
  9350. <p>The number of days from 7 to 30 that Secrets Manager waits before
  9351. permanently deleting the secret. You can&rsquo;t use both this parameter and
  9352. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  9353. then by default Secrets Manager uses a 30 day recovery window.
  9354. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  9355. </td>
  9356. </tr>
  9357. </tbody>
  9358. </table>
  9359. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  9360. </h3>
  9361. <p>
  9362. (<em>Appears on:</em>
  9363. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9364. </p>
  9365. <p>
  9366. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  9367. </p>
  9368. <table>
  9369. <thead>
  9370. <tr>
  9371. <th>Field</th>
  9372. <th>Description</th>
  9373. </tr>
  9374. </thead>
  9375. <tbody>
  9376. <tr>
  9377. <td>
  9378. <code>clientId</code></br>
  9379. <em>
  9380. string
  9381. </em>
  9382. </td>
  9383. <td>
  9384. </td>
  9385. </tr>
  9386. <tr>
  9387. <td>
  9388. <code>clientSecretSecretRef</code></br>
  9389. <em>
  9390. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9391. External Secrets meta/v1.SecretKeySelector
  9392. </a>
  9393. </em>
  9394. </td>
  9395. <td>
  9396. </td>
  9397. </tr>
  9398. </tbody>
  9399. </table>
  9400. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  9401. (<code>string</code> alias)</p></h3>
  9402. <p>
  9403. (<em>Appears on:</em>
  9404. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9405. </p>
  9406. <p>
  9407. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  9408. </p>
  9409. <table>
  9410. <thead>
  9411. <tr>
  9412. <th>Value</th>
  9413. <th>Description</th>
  9414. </tr>
  9415. </thead>
  9416. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  9417. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  9418. see: https://senhasegura.com/devops
  9419. </code></pre>
  9420. </td>
  9421. </tr></tbody>
  9422. </table>
  9423. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  9424. </h3>
  9425. <p>
  9426. (<em>Appears on:</em>
  9427. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9428. </p>
  9429. <p>
  9430. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  9431. </p>
  9432. <table>
  9433. <thead>
  9434. <tr>
  9435. <th>Field</th>
  9436. <th>Description</th>
  9437. </tr>
  9438. </thead>
  9439. <tbody>
  9440. <tr>
  9441. <td>
  9442. <code>url</code></br>
  9443. <em>
  9444. string
  9445. </em>
  9446. </td>
  9447. <td>
  9448. <p>URL of senhasegura</p>
  9449. </td>
  9450. </tr>
  9451. <tr>
  9452. <td>
  9453. <code>module</code></br>
  9454. <em>
  9455. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  9456. SenhaseguraModuleType
  9457. </a>
  9458. </em>
  9459. </td>
  9460. <td>
  9461. <p>Module defines which senhasegura module should be used to get secrets</p>
  9462. </td>
  9463. </tr>
  9464. <tr>
  9465. <td>
  9466. <code>auth</code></br>
  9467. <em>
  9468. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  9469. SenhaseguraAuth
  9470. </a>
  9471. </em>
  9472. </td>
  9473. <td>
  9474. <p>Auth defines parameters to authenticate in senhasegura</p>
  9475. </td>
  9476. </tr>
  9477. <tr>
  9478. <td>
  9479. <code>ignoreSslCertificate</code></br>
  9480. <em>
  9481. bool
  9482. </em>
  9483. </td>
  9484. <td>
  9485. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  9486. </td>
  9487. </tr>
  9488. </tbody>
  9489. </table>
  9490. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  9491. </h3>
  9492. <p>
  9493. (<em>Appears on:</em>
  9494. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  9495. </p>
  9496. <p>
  9497. <p>StoreGeneratorSourceRef allows you to override the source
  9498. from which the secret will be pulled from.
  9499. You can define at maximum one property.</p>
  9500. </p>
  9501. <table>
  9502. <thead>
  9503. <tr>
  9504. <th>Field</th>
  9505. <th>Description</th>
  9506. </tr>
  9507. </thead>
  9508. <tbody>
  9509. <tr>
  9510. <td>
  9511. <code>storeRef</code></br>
  9512. <em>
  9513. <a href="#external-secrets.io/v1.SecretStoreRef">
  9514. SecretStoreRef
  9515. </a>
  9516. </em>
  9517. </td>
  9518. <td>
  9519. <em>(Optional)</em>
  9520. </td>
  9521. </tr>
  9522. <tr>
  9523. <td>
  9524. <code>generatorRef</code></br>
  9525. <em>
  9526. <a href="#external-secrets.io/v1.GeneratorRef">
  9527. GeneratorRef
  9528. </a>
  9529. </em>
  9530. </td>
  9531. <td>
  9532. <em>(Optional)</em>
  9533. <p>GeneratorRef points to a generator custom resource.</p>
  9534. </td>
  9535. </tr>
  9536. </tbody>
  9537. </table>
  9538. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  9539. </h3>
  9540. <p>
  9541. (<em>Appears on:</em>
  9542. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  9543. </p>
  9544. <p>
  9545. <p>StoreSourceRef allows you to override the SecretStore source
  9546. from which the secret will be pulled from.
  9547. You can define at maximum one property.</p>
  9548. </p>
  9549. <table>
  9550. <thead>
  9551. <tr>
  9552. <th>Field</th>
  9553. <th>Description</th>
  9554. </tr>
  9555. </thead>
  9556. <tbody>
  9557. <tr>
  9558. <td>
  9559. <code>storeRef</code></br>
  9560. <em>
  9561. <a href="#external-secrets.io/v1.SecretStoreRef">
  9562. SecretStoreRef
  9563. </a>
  9564. </em>
  9565. </td>
  9566. <td>
  9567. <em>(Optional)</em>
  9568. </td>
  9569. </tr>
  9570. <tr>
  9571. <td>
  9572. <code>generatorRef</code></br>
  9573. <em>
  9574. <a href="#external-secrets.io/v1.GeneratorRef">
  9575. GeneratorRef
  9576. </a>
  9577. </em>
  9578. </td>
  9579. <td>
  9580. <p>GeneratorRef points to a generator custom resource.</p>
  9581. <p>Deprecated: The generatorRef is not implemented in .data[].
  9582. this will be removed with v1.</p>
  9583. </td>
  9584. </tr>
  9585. </tbody>
  9586. </table>
  9587. <h3 id="external-secrets.io/v1.Tag">Tag
  9588. </h3>
  9589. <p>
  9590. </p>
  9591. <table>
  9592. <thead>
  9593. <tr>
  9594. <th>Field</th>
  9595. <th>Description</th>
  9596. </tr>
  9597. </thead>
  9598. <tbody>
  9599. <tr>
  9600. <td>
  9601. <code>key</code></br>
  9602. <em>
  9603. string
  9604. </em>
  9605. </td>
  9606. <td>
  9607. </td>
  9608. </tr>
  9609. <tr>
  9610. <td>
  9611. <code>value</code></br>
  9612. <em>
  9613. string
  9614. </em>
  9615. </td>
  9616. <td>
  9617. </td>
  9618. </tr>
  9619. </tbody>
  9620. </table>
  9621. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  9622. (<code>string</code> alias)</p></h3>
  9623. <p>
  9624. (<em>Appears on:</em>
  9625. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9626. </p>
  9627. <p>
  9628. </p>
  9629. <table>
  9630. <thead>
  9631. <tr>
  9632. <th>Value</th>
  9633. <th>Description</th>
  9634. </tr>
  9635. </thead>
  9636. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  9637. <td></td>
  9638. </tr></tbody>
  9639. </table>
  9640. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  9641. </h3>
  9642. <p>
  9643. (<em>Appears on:</em>
  9644. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9645. </p>
  9646. <p>
  9647. </p>
  9648. <table>
  9649. <thead>
  9650. <tr>
  9651. <th>Field</th>
  9652. <th>Description</th>
  9653. </tr>
  9654. </thead>
  9655. <tbody>
  9656. <tr>
  9657. <td>
  9658. <code>configMap</code></br>
  9659. <em>
  9660. <a href="#external-secrets.io/v1.TemplateRef">
  9661. TemplateRef
  9662. </a>
  9663. </em>
  9664. </td>
  9665. <td>
  9666. </td>
  9667. </tr>
  9668. <tr>
  9669. <td>
  9670. <code>secret</code></br>
  9671. <em>
  9672. <a href="#external-secrets.io/v1.TemplateRef">
  9673. TemplateRef
  9674. </a>
  9675. </em>
  9676. </td>
  9677. <td>
  9678. </td>
  9679. </tr>
  9680. <tr>
  9681. <td>
  9682. <code>target</code></br>
  9683. <em>
  9684. <a href="#external-secrets.io/v1.TemplateTarget">
  9685. TemplateTarget
  9686. </a>
  9687. </em>
  9688. </td>
  9689. <td>
  9690. <em>(Optional)</em>
  9691. </td>
  9692. </tr>
  9693. <tr>
  9694. <td>
  9695. <code>literal</code></br>
  9696. <em>
  9697. string
  9698. </em>
  9699. </td>
  9700. <td>
  9701. <em>(Optional)</em>
  9702. </td>
  9703. </tr>
  9704. </tbody>
  9705. </table>
  9706. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  9707. (<code>string</code> alias)</p></h3>
  9708. <p>
  9709. (<em>Appears on:</em>
  9710. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9711. </p>
  9712. <p>
  9713. </p>
  9714. <table>
  9715. <thead>
  9716. <tr>
  9717. <th>Value</th>
  9718. <th>Description</th>
  9719. </tr>
  9720. </thead>
  9721. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  9722. <td></td>
  9723. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  9724. <td></td>
  9725. </tr></tbody>
  9726. </table>
  9727. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  9728. </h3>
  9729. <p>
  9730. (<em>Appears on:</em>
  9731. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9732. </p>
  9733. <p>
  9734. </p>
  9735. <table>
  9736. <thead>
  9737. <tr>
  9738. <th>Field</th>
  9739. <th>Description</th>
  9740. </tr>
  9741. </thead>
  9742. <tbody>
  9743. <tr>
  9744. <td>
  9745. <code>name</code></br>
  9746. <em>
  9747. string
  9748. </em>
  9749. </td>
  9750. <td>
  9751. <p>The name of the ConfigMap/Secret resource</p>
  9752. </td>
  9753. </tr>
  9754. <tr>
  9755. <td>
  9756. <code>items</code></br>
  9757. <em>
  9758. <a href="#external-secrets.io/v1.TemplateRefItem">
  9759. []TemplateRefItem
  9760. </a>
  9761. </em>
  9762. </td>
  9763. <td>
  9764. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  9765. </td>
  9766. </tr>
  9767. </tbody>
  9768. </table>
  9769. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  9770. </h3>
  9771. <p>
  9772. (<em>Appears on:</em>
  9773. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  9774. </p>
  9775. <p>
  9776. </p>
  9777. <table>
  9778. <thead>
  9779. <tr>
  9780. <th>Field</th>
  9781. <th>Description</th>
  9782. </tr>
  9783. </thead>
  9784. <tbody>
  9785. <tr>
  9786. <td>
  9787. <code>key</code></br>
  9788. <em>
  9789. string
  9790. </em>
  9791. </td>
  9792. <td>
  9793. <p>A key in the ConfigMap/Secret</p>
  9794. </td>
  9795. </tr>
  9796. <tr>
  9797. <td>
  9798. <code>templateAs</code></br>
  9799. <em>
  9800. <a href="#external-secrets.io/v1.TemplateScope">
  9801. TemplateScope
  9802. </a>
  9803. </em>
  9804. </td>
  9805. <td>
  9806. </td>
  9807. </tr>
  9808. </tbody>
  9809. </table>
  9810. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  9811. (<code>string</code> alias)</p></h3>
  9812. <p>
  9813. (<em>Appears on:</em>
  9814. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  9815. </p>
  9816. <p>
  9817. </p>
  9818. <table>
  9819. <thead>
  9820. <tr>
  9821. <th>Value</th>
  9822. <th>Description</th>
  9823. </tr>
  9824. </thead>
  9825. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  9826. <td></td>
  9827. </tr><tr><td><p>&#34;Values&#34;</p></td>
  9828. <td></td>
  9829. </tr></tbody>
  9830. </table>
  9831. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  9832. (<code>string</code> alias)</p></h3>
  9833. <p>
  9834. (<em>Appears on:</em>
  9835. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9836. </p>
  9837. <p>
  9838. </p>
  9839. <table>
  9840. <thead>
  9841. <tr>
  9842. <th>Value</th>
  9843. <th>Description</th>
  9844. </tr>
  9845. </thead>
  9846. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  9847. <td></td>
  9848. </tr><tr><td><p>&#34;Data&#34;</p></td>
  9849. <td></td>
  9850. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  9851. <td></td>
  9852. </tr></tbody>
  9853. </table>
  9854. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  9855. </h3>
  9856. <p>
  9857. (<em>Appears on:</em>
  9858. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  9859. </p>
  9860. <p>
  9861. </p>
  9862. <table>
  9863. <thead>
  9864. <tr>
  9865. <th>Field</th>
  9866. <th>Description</th>
  9867. </tr>
  9868. </thead>
  9869. <tbody>
  9870. <tr>
  9871. <td>
  9872. <code>bearerToken</code></br>
  9873. <em>
  9874. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9875. External Secrets meta/v1.SecretKeySelector
  9876. </a>
  9877. </em>
  9878. </td>
  9879. <td>
  9880. </td>
  9881. </tr>
  9882. </tbody>
  9883. </table>
  9884. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  9885. </h3>
  9886. <p>
  9887. (<em>Appears on:</em>
  9888. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  9889. </p>
  9890. <p>
  9891. </p>
  9892. <table>
  9893. <thead>
  9894. <tr>
  9895. <th>Field</th>
  9896. <th>Description</th>
  9897. </tr>
  9898. </thead>
  9899. <tbody>
  9900. <tr>
  9901. <td>
  9902. <code>clientId</code></br>
  9903. <em>
  9904. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9905. External Secrets meta/v1.SecretKeySelector
  9906. </a>
  9907. </em>
  9908. </td>
  9909. <td>
  9910. </td>
  9911. </tr>
  9912. <tr>
  9913. <td>
  9914. <code>clientSecret</code></br>
  9915. <em>
  9916. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9917. External Secrets meta/v1.SecretKeySelector
  9918. </a>
  9919. </em>
  9920. </td>
  9921. <td>
  9922. </td>
  9923. </tr>
  9924. </tbody>
  9925. </table>
  9926. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  9927. (<code>byte</code> alias)</p></h3>
  9928. <p>
  9929. </p>
  9930. <table>
  9931. <thead>
  9932. <tr>
  9933. <th>Value</th>
  9934. <th>Description</th>
  9935. </tr>
  9936. </thead>
  9937. <tbody><tr><td><p>2</p></td>
  9938. <td><p>Error indicates that there is a misconfiguration.</p>
  9939. </td>
  9940. </tr><tr><td><p>0</p></td>
  9941. <td><p>Ready indicates that the client is configured correctly
  9942. and can be used.</p>
  9943. </td>
  9944. </tr><tr><td><p>1</p></td>
  9945. <td><p>Unknown indicates that the client can be used
  9946. but information is missing and it can not be validated.</p>
  9947. </td>
  9948. </tr></tbody>
  9949. </table>
  9950. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  9951. </h3>
  9952. <p>
  9953. (<em>Appears on:</em>
  9954. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  9955. </p>
  9956. <p>
  9957. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  9958. with the role and secret stored in a Kubernetes Secret resource.</p>
  9959. </p>
  9960. <table>
  9961. <thead>
  9962. <tr>
  9963. <th>Field</th>
  9964. <th>Description</th>
  9965. </tr>
  9966. </thead>
  9967. <tbody>
  9968. <tr>
  9969. <td>
  9970. <code>path</code></br>
  9971. <em>
  9972. string
  9973. </em>
  9974. </td>
  9975. <td>
  9976. <p>Path where the App Role authentication backend is mounted
  9977. in Vault, e.g: &ldquo;approle&rdquo;</p>
  9978. </td>
  9979. </tr>
  9980. <tr>
  9981. <td>
  9982. <code>roleId</code></br>
  9983. <em>
  9984. string
  9985. </em>
  9986. </td>
  9987. <td>
  9988. <em>(Optional)</em>
  9989. <p>RoleID configured in the App Role authentication backend when setting
  9990. up the authentication backend in Vault.</p>
  9991. </td>
  9992. </tr>
  9993. <tr>
  9994. <td>
  9995. <code>roleRef</code></br>
  9996. <em>
  9997. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9998. External Secrets meta/v1.SecretKeySelector
  9999. </a>
  10000. </em>
  10001. </td>
  10002. <td>
  10003. <em>(Optional)</em>
  10004. <p>Reference to a key in a Secret that contains the App Role ID used
  10005. to authenticate with Vault.
  10006. The <code>key</code> field must be specified and denotes which entry within the Secret
  10007. resource is used as the app role id.</p>
  10008. </td>
  10009. </tr>
  10010. <tr>
  10011. <td>
  10012. <code>secretRef</code></br>
  10013. <em>
  10014. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10015. External Secrets meta/v1.SecretKeySelector
  10016. </a>
  10017. </em>
  10018. </td>
  10019. <td>
  10020. <p>Reference to a key in a Secret that contains the App Role secret used
  10021. to authenticate with Vault.
  10022. The <code>key</code> field must be specified and denotes which entry within the Secret
  10023. resource is used as the app role secret.</p>
  10024. </td>
  10025. </tr>
  10026. </tbody>
  10027. </table>
  10028. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  10029. </h3>
  10030. <p>
  10031. (<em>Appears on:</em>
  10032. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10033. </p>
  10034. <p>
  10035. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  10036. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  10037. can be specified. A namespace to authenticate against can optionally be specified.</p>
  10038. </p>
  10039. <table>
  10040. <thead>
  10041. <tr>
  10042. <th>Field</th>
  10043. <th>Description</th>
  10044. </tr>
  10045. </thead>
  10046. <tbody>
  10047. <tr>
  10048. <td>
  10049. <code>namespace</code></br>
  10050. <em>
  10051. string
  10052. </em>
  10053. </td>
  10054. <td>
  10055. <em>(Optional)</em>
  10056. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  10057. Namespaces is a set of features within Vault Enterprise that allows
  10058. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10059. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  10060. This will default to Vault.Namespace field if set, or empty otherwise</p>
  10061. </td>
  10062. </tr>
  10063. <tr>
  10064. <td>
  10065. <code>tokenSecretRef</code></br>
  10066. <em>
  10067. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10068. External Secrets meta/v1.SecretKeySelector
  10069. </a>
  10070. </em>
  10071. </td>
  10072. <td>
  10073. <em>(Optional)</em>
  10074. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  10075. </td>
  10076. </tr>
  10077. <tr>
  10078. <td>
  10079. <code>appRole</code></br>
  10080. <em>
  10081. <a href="#external-secrets.io/v1.VaultAppRole">
  10082. VaultAppRole
  10083. </a>
  10084. </em>
  10085. </td>
  10086. <td>
  10087. <em>(Optional)</em>
  10088. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  10089. with the role and secret stored in a Kubernetes Secret resource.</p>
  10090. </td>
  10091. </tr>
  10092. <tr>
  10093. <td>
  10094. <code>kubernetes</code></br>
  10095. <em>
  10096. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  10097. VaultKubernetesAuth
  10098. </a>
  10099. </em>
  10100. </td>
  10101. <td>
  10102. <em>(Optional)</em>
  10103. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  10104. token stored in the named Secret resource to the Vault server.</p>
  10105. </td>
  10106. </tr>
  10107. <tr>
  10108. <td>
  10109. <code>ldap</code></br>
  10110. <em>
  10111. <a href="#external-secrets.io/v1.VaultLdapAuth">
  10112. VaultLdapAuth
  10113. </a>
  10114. </em>
  10115. </td>
  10116. <td>
  10117. <em>(Optional)</em>
  10118. <p>Ldap authenticates with Vault by passing username/password pair using
  10119. the LDAP authentication method</p>
  10120. </td>
  10121. </tr>
  10122. <tr>
  10123. <td>
  10124. <code>jwt</code></br>
  10125. <em>
  10126. <a href="#external-secrets.io/v1.VaultJwtAuth">
  10127. VaultJwtAuth
  10128. </a>
  10129. </em>
  10130. </td>
  10131. <td>
  10132. <em>(Optional)</em>
  10133. <p>Jwt authenticates with Vault by passing role and JWT token using the
  10134. JWT/OIDC authentication method</p>
  10135. </td>
  10136. </tr>
  10137. <tr>
  10138. <td>
  10139. <code>cert</code></br>
  10140. <em>
  10141. <a href="#external-secrets.io/v1.VaultCertAuth">
  10142. VaultCertAuth
  10143. </a>
  10144. </em>
  10145. </td>
  10146. <td>
  10147. <em>(Optional)</em>
  10148. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  10149. Cert authentication method</p>
  10150. </td>
  10151. </tr>
  10152. <tr>
  10153. <td>
  10154. <code>iam</code></br>
  10155. <em>
  10156. <a href="#external-secrets.io/v1.VaultIamAuth">
  10157. VaultIamAuth
  10158. </a>
  10159. </em>
  10160. </td>
  10161. <td>
  10162. <em>(Optional)</em>
  10163. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  10164. AWS IAM authentication method</p>
  10165. </td>
  10166. </tr>
  10167. <tr>
  10168. <td>
  10169. <code>userPass</code></br>
  10170. <em>
  10171. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  10172. VaultUserPassAuth
  10173. </a>
  10174. </em>
  10175. </td>
  10176. <td>
  10177. <em>(Optional)</em>
  10178. <p>UserPass authenticates with Vault by passing username/password pair</p>
  10179. </td>
  10180. </tr>
  10181. </tbody>
  10182. </table>
  10183. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  10184. </h3>
  10185. <p>
  10186. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  10187. Only one of secretRef or jwt can be specified.
  10188. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  10189. </p>
  10190. <table>
  10191. <thead>
  10192. <tr>
  10193. <th>Field</th>
  10194. <th>Description</th>
  10195. </tr>
  10196. </thead>
  10197. <tbody>
  10198. <tr>
  10199. <td>
  10200. <code>secretRef</code></br>
  10201. <em>
  10202. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10203. VaultAwsAuthSecretRef
  10204. </a>
  10205. </em>
  10206. </td>
  10207. <td>
  10208. <em>(Optional)</em>
  10209. </td>
  10210. </tr>
  10211. <tr>
  10212. <td>
  10213. <code>jwt</code></br>
  10214. <em>
  10215. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10216. VaultAwsJWTAuth
  10217. </a>
  10218. </em>
  10219. </td>
  10220. <td>
  10221. <em>(Optional)</em>
  10222. </td>
  10223. </tr>
  10224. </tbody>
  10225. </table>
  10226. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  10227. </h3>
  10228. <p>
  10229. (<em>Appears on:</em>
  10230. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10231. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10232. </p>
  10233. <p>
  10234. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  10235. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  10236. </p>
  10237. <table>
  10238. <thead>
  10239. <tr>
  10240. <th>Field</th>
  10241. <th>Description</th>
  10242. </tr>
  10243. </thead>
  10244. <tbody>
  10245. <tr>
  10246. <td>
  10247. <code>accessKeyIDSecretRef</code></br>
  10248. <em>
  10249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10250. External Secrets meta/v1.SecretKeySelector
  10251. </a>
  10252. </em>
  10253. </td>
  10254. <td>
  10255. <em>(Optional)</em>
  10256. <p>The AccessKeyID is used for authentication</p>
  10257. </td>
  10258. </tr>
  10259. <tr>
  10260. <td>
  10261. <code>secretAccessKeySecretRef</code></br>
  10262. <em>
  10263. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10264. External Secrets meta/v1.SecretKeySelector
  10265. </a>
  10266. </em>
  10267. </td>
  10268. <td>
  10269. <em>(Optional)</em>
  10270. <p>The SecretAccessKey is used for authentication</p>
  10271. </td>
  10272. </tr>
  10273. <tr>
  10274. <td>
  10275. <code>sessionTokenSecretRef</code></br>
  10276. <em>
  10277. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10278. External Secrets meta/v1.SecretKeySelector
  10279. </a>
  10280. </em>
  10281. </td>
  10282. <td>
  10283. <em>(Optional)</em>
  10284. <p>The SessionToken used for authentication
  10285. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  10286. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  10287. </td>
  10288. </tr>
  10289. </tbody>
  10290. </table>
  10291. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  10292. </h3>
  10293. <p>
  10294. (<em>Appears on:</em>
  10295. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10296. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10297. </p>
  10298. <p>
  10299. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  10300. </p>
  10301. <table>
  10302. <thead>
  10303. <tr>
  10304. <th>Field</th>
  10305. <th>Description</th>
  10306. </tr>
  10307. </thead>
  10308. <tbody>
  10309. <tr>
  10310. <td>
  10311. <code>serviceAccountRef</code></br>
  10312. <em>
  10313. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10314. External Secrets meta/v1.ServiceAccountSelector
  10315. </a>
  10316. </em>
  10317. </td>
  10318. <td>
  10319. <em>(Optional)</em>
  10320. </td>
  10321. </tr>
  10322. </tbody>
  10323. </table>
  10324. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  10325. </h3>
  10326. <p>
  10327. (<em>Appears on:</em>
  10328. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10329. </p>
  10330. <p>
  10331. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  10332. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  10333. </p>
  10334. <table>
  10335. <thead>
  10336. <tr>
  10337. <th>Field</th>
  10338. <th>Description</th>
  10339. </tr>
  10340. </thead>
  10341. <tbody>
  10342. <tr>
  10343. <td>
  10344. <code>clientCert</code></br>
  10345. <em>
  10346. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10347. External Secrets meta/v1.SecretKeySelector
  10348. </a>
  10349. </em>
  10350. </td>
  10351. <td>
  10352. <em>(Optional)</em>
  10353. <p>ClientCert is a certificate to authenticate using the Cert Vault
  10354. authentication method</p>
  10355. </td>
  10356. </tr>
  10357. <tr>
  10358. <td>
  10359. <code>secretRef</code></br>
  10360. <em>
  10361. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10362. External Secrets meta/v1.SecretKeySelector
  10363. </a>
  10364. </em>
  10365. </td>
  10366. <td>
  10367. <em>(Optional)</em>
  10368. <p>SecretRef to a key in a Secret resource containing client private key to
  10369. authenticate with Vault using the Cert authentication method</p>
  10370. </td>
  10371. </tr>
  10372. </tbody>
  10373. </table>
  10374. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  10375. </h3>
  10376. <p>
  10377. (<em>Appears on:</em>
  10378. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10379. </p>
  10380. <p>
  10381. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  10382. when the Vault server requires mutual authentication.</p>
  10383. </p>
  10384. <table>
  10385. <thead>
  10386. <tr>
  10387. <th>Field</th>
  10388. <th>Description</th>
  10389. </tr>
  10390. </thead>
  10391. <tbody>
  10392. <tr>
  10393. <td>
  10394. <code>certSecretRef</code></br>
  10395. <em>
  10396. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10397. External Secrets meta/v1.SecretKeySelector
  10398. </a>
  10399. </em>
  10400. </td>
  10401. <td>
  10402. <em>(Optional)</em>
  10403. <p>CertSecretRef is a certificate added to the transport layer
  10404. when communicating with the Vault server.
  10405. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  10406. </td>
  10407. </tr>
  10408. <tr>
  10409. <td>
  10410. <code>keySecretRef</code></br>
  10411. <em>
  10412. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10413. External Secrets meta/v1.SecretKeySelector
  10414. </a>
  10415. </em>
  10416. </td>
  10417. <td>
  10418. <em>(Optional)</em>
  10419. <p>KeySecretRef to a key in a Secret resource containing client private key
  10420. added to the transport layer when communicating with the Vault server.
  10421. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  10422. </td>
  10423. </tr>
  10424. </tbody>
  10425. </table>
  10426. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  10427. </h3>
  10428. <p>
  10429. (<em>Appears on:</em>
  10430. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10431. </p>
  10432. <p>
  10433. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10434. </p>
  10435. <table>
  10436. <thead>
  10437. <tr>
  10438. <th>Field</th>
  10439. <th>Description</th>
  10440. </tr>
  10441. </thead>
  10442. <tbody>
  10443. <tr>
  10444. <td>
  10445. <code>path</code></br>
  10446. <em>
  10447. string
  10448. </em>
  10449. </td>
  10450. <td>
  10451. <em>(Optional)</em>
  10452. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  10453. </td>
  10454. </tr>
  10455. <tr>
  10456. <td>
  10457. <code>region</code></br>
  10458. <em>
  10459. string
  10460. </em>
  10461. </td>
  10462. <td>
  10463. <em>(Optional)</em>
  10464. <p>AWS region</p>
  10465. </td>
  10466. </tr>
  10467. <tr>
  10468. <td>
  10469. <code>role</code></br>
  10470. <em>
  10471. string
  10472. </em>
  10473. </td>
  10474. <td>
  10475. <em>(Optional)</em>
  10476. <p>This is the AWS role to be assumed before talking to vault</p>
  10477. </td>
  10478. </tr>
  10479. <tr>
  10480. <td>
  10481. <code>vaultRole</code></br>
  10482. <em>
  10483. string
  10484. </em>
  10485. </td>
  10486. <td>
  10487. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  10488. </td>
  10489. </tr>
  10490. <tr>
  10491. <td>
  10492. <code>externalID</code></br>
  10493. <em>
  10494. string
  10495. </em>
  10496. </td>
  10497. <td>
  10498. <p>AWS External ID set on assumed IAM roles</p>
  10499. </td>
  10500. </tr>
  10501. <tr>
  10502. <td>
  10503. <code>vaultAwsIamServerID</code></br>
  10504. <em>
  10505. string
  10506. </em>
  10507. </td>
  10508. <td>
  10509. <em>(Optional)</em>
  10510. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10511. </td>
  10512. </tr>
  10513. <tr>
  10514. <td>
  10515. <code>secretRef</code></br>
  10516. <em>
  10517. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10518. VaultAwsAuthSecretRef
  10519. </a>
  10520. </em>
  10521. </td>
  10522. <td>
  10523. <em>(Optional)</em>
  10524. <p>Specify credentials in a Secret object</p>
  10525. </td>
  10526. </tr>
  10527. <tr>
  10528. <td>
  10529. <code>jwt</code></br>
  10530. <em>
  10531. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10532. VaultAwsJWTAuth
  10533. </a>
  10534. </em>
  10535. </td>
  10536. <td>
  10537. <em>(Optional)</em>
  10538. <p>Specify a service account with IRSA enabled</p>
  10539. </td>
  10540. </tr>
  10541. </tbody>
  10542. </table>
  10543. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  10544. </h3>
  10545. <p>
  10546. (<em>Appears on:</em>
  10547. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10548. </p>
  10549. <p>
  10550. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  10551. method, with the role name and a token stored in a Kubernetes Secret resource or
  10552. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  10553. </p>
  10554. <table>
  10555. <thead>
  10556. <tr>
  10557. <th>Field</th>
  10558. <th>Description</th>
  10559. </tr>
  10560. </thead>
  10561. <tbody>
  10562. <tr>
  10563. <td>
  10564. <code>path</code></br>
  10565. <em>
  10566. string
  10567. </em>
  10568. </td>
  10569. <td>
  10570. <p>Path where the JWT authentication backend is mounted
  10571. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  10572. </td>
  10573. </tr>
  10574. <tr>
  10575. <td>
  10576. <code>role</code></br>
  10577. <em>
  10578. string
  10579. </em>
  10580. </td>
  10581. <td>
  10582. <em>(Optional)</em>
  10583. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  10584. authentication method</p>
  10585. </td>
  10586. </tr>
  10587. <tr>
  10588. <td>
  10589. <code>secretRef</code></br>
  10590. <em>
  10591. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10592. External Secrets meta/v1.SecretKeySelector
  10593. </a>
  10594. </em>
  10595. </td>
  10596. <td>
  10597. <em>(Optional)</em>
  10598. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  10599. authenticate with Vault using the JWT/OIDC authentication method.</p>
  10600. </td>
  10601. </tr>
  10602. <tr>
  10603. <td>
  10604. <code>kubernetesServiceAccountToken</code></br>
  10605. <em>
  10606. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  10607. VaultKubernetesServiceAccountTokenAuth
  10608. </a>
  10609. </em>
  10610. </td>
  10611. <td>
  10612. <em>(Optional)</em>
  10613. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  10614. a token for with the <code>TokenRequest</code> API.</p>
  10615. </td>
  10616. </tr>
  10617. </tbody>
  10618. </table>
  10619. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  10620. (<code>string</code> alias)</p></h3>
  10621. <p>
  10622. (<em>Appears on:</em>
  10623. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10624. </p>
  10625. <p>
  10626. </p>
  10627. <table>
  10628. <thead>
  10629. <tr>
  10630. <th>Value</th>
  10631. <th>Description</th>
  10632. </tr>
  10633. </thead>
  10634. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  10635. <td></td>
  10636. </tr><tr><td><p>&#34;v2&#34;</p></td>
  10637. <td></td>
  10638. </tr></tbody>
  10639. </table>
  10640. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  10641. </h3>
  10642. <p>
  10643. (<em>Appears on:</em>
  10644. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10645. </p>
  10646. <p>
  10647. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  10648. a Secret.</p>
  10649. </p>
  10650. <table>
  10651. <thead>
  10652. <tr>
  10653. <th>Field</th>
  10654. <th>Description</th>
  10655. </tr>
  10656. </thead>
  10657. <tbody>
  10658. <tr>
  10659. <td>
  10660. <code>mountPath</code></br>
  10661. <em>
  10662. string
  10663. </em>
  10664. </td>
  10665. <td>
  10666. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  10667. &ldquo;kubernetes&rdquo;</p>
  10668. </td>
  10669. </tr>
  10670. <tr>
  10671. <td>
  10672. <code>serviceAccountRef</code></br>
  10673. <em>
  10674. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10675. External Secrets meta/v1.ServiceAccountSelector
  10676. </a>
  10677. </em>
  10678. </td>
  10679. <td>
  10680. <em>(Optional)</em>
  10681. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  10682. If the service account is specified, the service account secret token JWT will be used
  10683. for authenticating with Vault. If the service account selector is not supplied,
  10684. the secretRef will be used instead.</p>
  10685. </td>
  10686. </tr>
  10687. <tr>
  10688. <td>
  10689. <code>secretRef</code></br>
  10690. <em>
  10691. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10692. External Secrets meta/v1.SecretKeySelector
  10693. </a>
  10694. </em>
  10695. </td>
  10696. <td>
  10697. <em>(Optional)</em>
  10698. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  10699. for authenticating with Vault. If a name is specified without a key,
  10700. <code>token</code> is the default. If one is not specified, the one bound to
  10701. the controller will be used.</p>
  10702. </td>
  10703. </tr>
  10704. <tr>
  10705. <td>
  10706. <code>role</code></br>
  10707. <em>
  10708. string
  10709. </em>
  10710. </td>
  10711. <td>
  10712. <p>A required field containing the Vault Role to assume. A Role binds a
  10713. Kubernetes ServiceAccount with a set of Vault policies.</p>
  10714. </td>
  10715. </tr>
  10716. </tbody>
  10717. </table>
  10718. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  10719. </h3>
  10720. <p>
  10721. (<em>Appears on:</em>
  10722. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  10723. </p>
  10724. <p>
  10725. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  10726. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  10727. </p>
  10728. <table>
  10729. <thead>
  10730. <tr>
  10731. <th>Field</th>
  10732. <th>Description</th>
  10733. </tr>
  10734. </thead>
  10735. <tbody>
  10736. <tr>
  10737. <td>
  10738. <code>serviceAccountRef</code></br>
  10739. <em>
  10740. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10741. External Secrets meta/v1.ServiceAccountSelector
  10742. </a>
  10743. </em>
  10744. </td>
  10745. <td>
  10746. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  10747. </td>
  10748. </tr>
  10749. <tr>
  10750. <td>
  10751. <code>audiences</code></br>
  10752. <em>
  10753. []string
  10754. </em>
  10755. </td>
  10756. <td>
  10757. <em>(Optional)</em>
  10758. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  10759. account token for the service account referenced by <code>serviceAccountRef</code>.
  10760. Defaults to a single audience <code>vault</code> it not specified.
  10761. Deprecated: use serviceAccountRef.Audiences instead</p>
  10762. </td>
  10763. </tr>
  10764. <tr>
  10765. <td>
  10766. <code>expirationSeconds</code></br>
  10767. <em>
  10768. int64
  10769. </em>
  10770. </td>
  10771. <td>
  10772. <em>(Optional)</em>
  10773. <p>Optional expiration time in seconds that will be used to request a temporary
  10774. Kubernetes service account token for the service account referenced by
  10775. <code>serviceAccountRef</code>.
  10776. Deprecated: this will be removed in the future.
  10777. Defaults to 10 minutes.</p>
  10778. </td>
  10779. </tr>
  10780. </tbody>
  10781. </table>
  10782. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  10783. </h3>
  10784. <p>
  10785. (<em>Appears on:</em>
  10786. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10787. </p>
  10788. <p>
  10789. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  10790. with the username and password stored in a Kubernetes Secret resource.</p>
  10791. </p>
  10792. <table>
  10793. <thead>
  10794. <tr>
  10795. <th>Field</th>
  10796. <th>Description</th>
  10797. </tr>
  10798. </thead>
  10799. <tbody>
  10800. <tr>
  10801. <td>
  10802. <code>path</code></br>
  10803. <em>
  10804. string
  10805. </em>
  10806. </td>
  10807. <td>
  10808. <p>Path where the LDAP authentication backend is mounted
  10809. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  10810. </td>
  10811. </tr>
  10812. <tr>
  10813. <td>
  10814. <code>username</code></br>
  10815. <em>
  10816. string
  10817. </em>
  10818. </td>
  10819. <td>
  10820. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  10821. authentication method</p>
  10822. </td>
  10823. </tr>
  10824. <tr>
  10825. <td>
  10826. <code>secretRef</code></br>
  10827. <em>
  10828. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10829. External Secrets meta/v1.SecretKeySelector
  10830. </a>
  10831. </em>
  10832. </td>
  10833. <td>
  10834. <em>(Optional)</em>
  10835. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  10836. user used to authenticate with Vault using the LDAP authentication
  10837. method</p>
  10838. </td>
  10839. </tr>
  10840. </tbody>
  10841. </table>
  10842. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  10843. </h3>
  10844. <p>
  10845. (<em>Appears on:</em>
  10846. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10847. </p>
  10848. <p>
  10849. <p>Configures an store to sync secrets using a HashiCorp Vault
  10850. KV backend.</p>
  10851. </p>
  10852. <table>
  10853. <thead>
  10854. <tr>
  10855. <th>Field</th>
  10856. <th>Description</th>
  10857. </tr>
  10858. </thead>
  10859. <tbody>
  10860. <tr>
  10861. <td>
  10862. <code>auth</code></br>
  10863. <em>
  10864. <a href="#external-secrets.io/v1.VaultAuth">
  10865. VaultAuth
  10866. </a>
  10867. </em>
  10868. </td>
  10869. <td>
  10870. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  10871. </td>
  10872. </tr>
  10873. <tr>
  10874. <td>
  10875. <code>server</code></br>
  10876. <em>
  10877. string
  10878. </em>
  10879. </td>
  10880. <td>
  10881. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  10882. </td>
  10883. </tr>
  10884. <tr>
  10885. <td>
  10886. <code>path</code></br>
  10887. <em>
  10888. string
  10889. </em>
  10890. </td>
  10891. <td>
  10892. <em>(Optional)</em>
  10893. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  10894. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  10895. for fetching secrets from Vault is optional and will be appended
  10896. if not present in specified path.</p>
  10897. </td>
  10898. </tr>
  10899. <tr>
  10900. <td>
  10901. <code>version</code></br>
  10902. <em>
  10903. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  10904. VaultKVStoreVersion
  10905. </a>
  10906. </em>
  10907. </td>
  10908. <td>
  10909. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  10910. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  10911. </td>
  10912. </tr>
  10913. <tr>
  10914. <td>
  10915. <code>namespace</code></br>
  10916. <em>
  10917. string
  10918. </em>
  10919. </td>
  10920. <td>
  10921. <em>(Optional)</em>
  10922. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  10923. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10924. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  10925. </td>
  10926. </tr>
  10927. <tr>
  10928. <td>
  10929. <code>caBundle</code></br>
  10930. <em>
  10931. []byte
  10932. </em>
  10933. </td>
  10934. <td>
  10935. <em>(Optional)</em>
  10936. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  10937. if the Server URL is using HTTPS protocol. This parameter is ignored for
  10938. plain HTTP protocol connection. If not set the system root certificates
  10939. are used to validate the TLS connection.</p>
  10940. </td>
  10941. </tr>
  10942. <tr>
  10943. <td>
  10944. <code>tls</code></br>
  10945. <em>
  10946. <a href="#external-secrets.io/v1.VaultClientTLS">
  10947. VaultClientTLS
  10948. </a>
  10949. </em>
  10950. </td>
  10951. <td>
  10952. <em>(Optional)</em>
  10953. <p>The configuration used for client side related TLS communication, when the Vault server
  10954. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  10955. This parameter is ignored for plain HTTP protocol connection.
  10956. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  10957. which is available under the <code>auth.cert</code> section.</p>
  10958. </td>
  10959. </tr>
  10960. <tr>
  10961. <td>
  10962. <code>caProvider</code></br>
  10963. <em>
  10964. <a href="#external-secrets.io/v1.CAProvider">
  10965. CAProvider
  10966. </a>
  10967. </em>
  10968. </td>
  10969. <td>
  10970. <em>(Optional)</em>
  10971. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  10972. </td>
  10973. </tr>
  10974. <tr>
  10975. <td>
  10976. <code>readYourWrites</code></br>
  10977. <em>
  10978. bool
  10979. </em>
  10980. </td>
  10981. <td>
  10982. <em>(Optional)</em>
  10983. <p>ReadYourWrites ensures isolated read-after-write semantics by
  10984. providing discovered cluster replication states in each request.
  10985. More information about eventual consistency in Vault can be found here
  10986. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  10987. </td>
  10988. </tr>
  10989. <tr>
  10990. <td>
  10991. <code>forwardInconsistent</code></br>
  10992. <em>
  10993. bool
  10994. </em>
  10995. </td>
  10996. <td>
  10997. <em>(Optional)</em>
  10998. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  10999. leader instead of simply retrying within a loop. This can increase performance if
  11000. the option is enabled serverside.
  11001. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  11002. </td>
  11003. </tr>
  11004. <tr>
  11005. <td>
  11006. <code>headers</code></br>
  11007. <em>
  11008. map[string]string
  11009. </em>
  11010. </td>
  11011. <td>
  11012. <em>(Optional)</em>
  11013. <p>Headers to be added in Vault request</p>
  11014. </td>
  11015. </tr>
  11016. </tbody>
  11017. </table>
  11018. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  11019. </h3>
  11020. <p>
  11021. (<em>Appears on:</em>
  11022. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11023. </p>
  11024. <p>
  11025. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  11026. with the username and password stored in a Kubernetes Secret resource.</p>
  11027. </p>
  11028. <table>
  11029. <thead>
  11030. <tr>
  11031. <th>Field</th>
  11032. <th>Description</th>
  11033. </tr>
  11034. </thead>
  11035. <tbody>
  11036. <tr>
  11037. <td>
  11038. <code>path</code></br>
  11039. <em>
  11040. string
  11041. </em>
  11042. </td>
  11043. <td>
  11044. <p>Path where the UserPassword authentication backend is mounted
  11045. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  11046. </td>
  11047. </tr>
  11048. <tr>
  11049. <td>
  11050. <code>username</code></br>
  11051. <em>
  11052. string
  11053. </em>
  11054. </td>
  11055. <td>
  11056. <p>Username is a username used to authenticate using the UserPass Vault
  11057. authentication method</p>
  11058. </td>
  11059. </tr>
  11060. <tr>
  11061. <td>
  11062. <code>secretRef</code></br>
  11063. <em>
  11064. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11065. External Secrets meta/v1.SecretKeySelector
  11066. </a>
  11067. </em>
  11068. </td>
  11069. <td>
  11070. <em>(Optional)</em>
  11071. <p>SecretRef to a key in a Secret resource containing password for the
  11072. user used to authenticate with Vault using the UserPass authentication
  11073. method</p>
  11074. </td>
  11075. </tr>
  11076. </tbody>
  11077. </table>
  11078. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  11079. </h3>
  11080. <p>
  11081. (<em>Appears on:</em>
  11082. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11083. </p>
  11084. <p>
  11085. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  11086. </p>
  11087. <table>
  11088. <thead>
  11089. <tr>
  11090. <th>Field</th>
  11091. <th>Description</th>
  11092. </tr>
  11093. </thead>
  11094. <tbody>
  11095. <tr>
  11096. <td>
  11097. <code>type</code></br>
  11098. <em>
  11099. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  11100. WebhookCAProviderType
  11101. </a>
  11102. </em>
  11103. </td>
  11104. <td>
  11105. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  11106. </td>
  11107. </tr>
  11108. <tr>
  11109. <td>
  11110. <code>name</code></br>
  11111. <em>
  11112. string
  11113. </em>
  11114. </td>
  11115. <td>
  11116. <p>The name of the object located at the provider type.</p>
  11117. </td>
  11118. </tr>
  11119. <tr>
  11120. <td>
  11121. <code>key</code></br>
  11122. <em>
  11123. string
  11124. </em>
  11125. </td>
  11126. <td>
  11127. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  11128. </td>
  11129. </tr>
  11130. <tr>
  11131. <td>
  11132. <code>namespace</code></br>
  11133. <em>
  11134. string
  11135. </em>
  11136. </td>
  11137. <td>
  11138. <em>(Optional)</em>
  11139. <p>The namespace the Provider type is in.</p>
  11140. </td>
  11141. </tr>
  11142. </tbody>
  11143. </table>
  11144. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  11145. (<code>string</code> alias)</p></h3>
  11146. <p>
  11147. (<em>Appears on:</em>
  11148. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  11149. </p>
  11150. <p>
  11151. </p>
  11152. <table>
  11153. <thead>
  11154. <tr>
  11155. <th>Value</th>
  11156. <th>Description</th>
  11157. </tr>
  11158. </thead>
  11159. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  11160. <td></td>
  11161. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  11162. <td></td>
  11163. </tr></tbody>
  11164. </table>
  11165. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  11166. </h3>
  11167. <p>
  11168. (<em>Appears on:</em>
  11169. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11170. </p>
  11171. <p>
  11172. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  11173. </p>
  11174. <table>
  11175. <thead>
  11176. <tr>
  11177. <th>Field</th>
  11178. <th>Description</th>
  11179. </tr>
  11180. </thead>
  11181. <tbody>
  11182. <tr>
  11183. <td>
  11184. <code>method</code></br>
  11185. <em>
  11186. string
  11187. </em>
  11188. </td>
  11189. <td>
  11190. <p>Webhook Method</p>
  11191. </td>
  11192. </tr>
  11193. <tr>
  11194. <td>
  11195. <code>url</code></br>
  11196. <em>
  11197. string
  11198. </em>
  11199. </td>
  11200. <td>
  11201. <p>Webhook url to call</p>
  11202. </td>
  11203. </tr>
  11204. <tr>
  11205. <td>
  11206. <code>headers</code></br>
  11207. <em>
  11208. map[string]string
  11209. </em>
  11210. </td>
  11211. <td>
  11212. <em>(Optional)</em>
  11213. <p>Headers</p>
  11214. </td>
  11215. </tr>
  11216. <tr>
  11217. <td>
  11218. <code>auth</code></br>
  11219. <em>
  11220. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  11221. AuthorizationProtocol
  11222. </a>
  11223. </em>
  11224. </td>
  11225. <td>
  11226. <em>(Optional)</em>
  11227. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  11228. </td>
  11229. </tr>
  11230. <tr>
  11231. <td>
  11232. <code>body</code></br>
  11233. <em>
  11234. string
  11235. </em>
  11236. </td>
  11237. <td>
  11238. <em>(Optional)</em>
  11239. <p>Body</p>
  11240. </td>
  11241. </tr>
  11242. <tr>
  11243. <td>
  11244. <code>timeout</code></br>
  11245. <em>
  11246. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  11247. Kubernetes meta/v1.Duration
  11248. </a>
  11249. </em>
  11250. </td>
  11251. <td>
  11252. <em>(Optional)</em>
  11253. <p>Timeout</p>
  11254. </td>
  11255. </tr>
  11256. <tr>
  11257. <td>
  11258. <code>result</code></br>
  11259. <em>
  11260. <a href="#external-secrets.io/v1.WebhookResult">
  11261. WebhookResult
  11262. </a>
  11263. </em>
  11264. </td>
  11265. <td>
  11266. <p>Result formatting</p>
  11267. </td>
  11268. </tr>
  11269. <tr>
  11270. <td>
  11271. <code>secrets</code></br>
  11272. <em>
  11273. <a href="#external-secrets.io/v1.WebhookSecret">
  11274. []WebhookSecret
  11275. </a>
  11276. </em>
  11277. </td>
  11278. <td>
  11279. <em>(Optional)</em>
  11280. <p>Secrets to fill in templates
  11281. These secrets will be passed to the templating function as key value pairs under the given name</p>
  11282. </td>
  11283. </tr>
  11284. <tr>
  11285. <td>
  11286. <code>caBundle</code></br>
  11287. <em>
  11288. []byte
  11289. </em>
  11290. </td>
  11291. <td>
  11292. <em>(Optional)</em>
  11293. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  11294. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11295. plain HTTP protocol connection. If not set the system root certificates
  11296. are used to validate the TLS connection.</p>
  11297. </td>
  11298. </tr>
  11299. <tr>
  11300. <td>
  11301. <code>caProvider</code></br>
  11302. <em>
  11303. <a href="#external-secrets.io/v1.WebhookCAProvider">
  11304. WebhookCAProvider
  11305. </a>
  11306. </em>
  11307. </td>
  11308. <td>
  11309. <em>(Optional)</em>
  11310. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  11311. </td>
  11312. </tr>
  11313. </tbody>
  11314. </table>
  11315. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  11316. </h3>
  11317. <p>
  11318. (<em>Appears on:</em>
  11319. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11320. </p>
  11321. <p>
  11322. </p>
  11323. <table>
  11324. <thead>
  11325. <tr>
  11326. <th>Field</th>
  11327. <th>Description</th>
  11328. </tr>
  11329. </thead>
  11330. <tbody>
  11331. <tr>
  11332. <td>
  11333. <code>jsonPath</code></br>
  11334. <em>
  11335. string
  11336. </em>
  11337. </td>
  11338. <td>
  11339. <em>(Optional)</em>
  11340. <p>Json path of return value</p>
  11341. </td>
  11342. </tr>
  11343. </tbody>
  11344. </table>
  11345. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  11346. </h3>
  11347. <p>
  11348. (<em>Appears on:</em>
  11349. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11350. </p>
  11351. <p>
  11352. </p>
  11353. <table>
  11354. <thead>
  11355. <tr>
  11356. <th>Field</th>
  11357. <th>Description</th>
  11358. </tr>
  11359. </thead>
  11360. <tbody>
  11361. <tr>
  11362. <td>
  11363. <code>name</code></br>
  11364. <em>
  11365. string
  11366. </em>
  11367. </td>
  11368. <td>
  11369. <p>Name of this secret in templates</p>
  11370. </td>
  11371. </tr>
  11372. <tr>
  11373. <td>
  11374. <code>secretRef</code></br>
  11375. <em>
  11376. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11377. External Secrets meta/v1.SecretKeySelector
  11378. </a>
  11379. </em>
  11380. </td>
  11381. <td>
  11382. <p>Secret ref to fill in credentials</p>
  11383. </td>
  11384. </tr>
  11385. </tbody>
  11386. </table>
  11387. <h3 id="external-secrets.io/v1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  11388. </h3>
  11389. <p>
  11390. (<em>Appears on:</em>
  11391. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11392. </p>
  11393. <p>
  11394. </p>
  11395. <table>
  11396. <thead>
  11397. <tr>
  11398. <th>Field</th>
  11399. <th>Description</th>
  11400. </tr>
  11401. </thead>
  11402. <tbody>
  11403. <tr>
  11404. <td>
  11405. <code>authorizedKeySecretRef</code></br>
  11406. <em>
  11407. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11408. External Secrets meta/v1.SecretKeySelector
  11409. </a>
  11410. </em>
  11411. </td>
  11412. <td>
  11413. <em>(Optional)</em>
  11414. <p>The authorized key used for authentication</p>
  11415. </td>
  11416. </tr>
  11417. </tbody>
  11418. </table>
  11419. <h3 id="external-secrets.io/v1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  11420. </h3>
  11421. <p>
  11422. (<em>Appears on:</em>
  11423. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11424. </p>
  11425. <p>
  11426. </p>
  11427. <table>
  11428. <thead>
  11429. <tr>
  11430. <th>Field</th>
  11431. <th>Description</th>
  11432. </tr>
  11433. </thead>
  11434. <tbody>
  11435. <tr>
  11436. <td>
  11437. <code>certSecretRef</code></br>
  11438. <em>
  11439. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11440. External Secrets meta/v1.SecretKeySelector
  11441. </a>
  11442. </em>
  11443. </td>
  11444. <td>
  11445. </td>
  11446. </tr>
  11447. </tbody>
  11448. </table>
  11449. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  11450. </h3>
  11451. <p>
  11452. (<em>Appears on:</em>
  11453. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11454. </p>
  11455. <p>
  11456. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  11457. </p>
  11458. <table>
  11459. <thead>
  11460. <tr>
  11461. <th>Field</th>
  11462. <th>Description</th>
  11463. </tr>
  11464. </thead>
  11465. <tbody>
  11466. <tr>
  11467. <td>
  11468. <code>apiEndpoint</code></br>
  11469. <em>
  11470. string
  11471. </em>
  11472. </td>
  11473. <td>
  11474. <em>(Optional)</em>
  11475. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11476. </td>
  11477. </tr>
  11478. <tr>
  11479. <td>
  11480. <code>auth</code></br>
  11481. <em>
  11482. <a href="#external-secrets.io/v1.YandexCertificateManagerAuth">
  11483. YandexCertificateManagerAuth
  11484. </a>
  11485. </em>
  11486. </td>
  11487. <td>
  11488. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  11489. </td>
  11490. </tr>
  11491. <tr>
  11492. <td>
  11493. <code>caProvider</code></br>
  11494. <em>
  11495. <a href="#external-secrets.io/v1.YandexCertificateManagerCAProvider">
  11496. YandexCertificateManagerCAProvider
  11497. </a>
  11498. </em>
  11499. </td>
  11500. <td>
  11501. <em>(Optional)</em>
  11502. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11503. </td>
  11504. </tr>
  11505. </tbody>
  11506. </table>
  11507. <h3 id="external-secrets.io/v1.YandexLockboxAuth">YandexLockboxAuth
  11508. </h3>
  11509. <p>
  11510. (<em>Appears on:</em>
  11511. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11512. </p>
  11513. <p>
  11514. </p>
  11515. <table>
  11516. <thead>
  11517. <tr>
  11518. <th>Field</th>
  11519. <th>Description</th>
  11520. </tr>
  11521. </thead>
  11522. <tbody>
  11523. <tr>
  11524. <td>
  11525. <code>authorizedKeySecretRef</code></br>
  11526. <em>
  11527. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11528. External Secrets meta/v1.SecretKeySelector
  11529. </a>
  11530. </em>
  11531. </td>
  11532. <td>
  11533. <em>(Optional)</em>
  11534. <p>The authorized key used for authentication</p>
  11535. </td>
  11536. </tr>
  11537. </tbody>
  11538. </table>
  11539. <h3 id="external-secrets.io/v1.YandexLockboxCAProvider">YandexLockboxCAProvider
  11540. </h3>
  11541. <p>
  11542. (<em>Appears on:</em>
  11543. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11544. </p>
  11545. <p>
  11546. </p>
  11547. <table>
  11548. <thead>
  11549. <tr>
  11550. <th>Field</th>
  11551. <th>Description</th>
  11552. </tr>
  11553. </thead>
  11554. <tbody>
  11555. <tr>
  11556. <td>
  11557. <code>certSecretRef</code></br>
  11558. <em>
  11559. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11560. External Secrets meta/v1.SecretKeySelector
  11561. </a>
  11562. </em>
  11563. </td>
  11564. <td>
  11565. </td>
  11566. </tr>
  11567. </tbody>
  11568. </table>
  11569. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  11570. </h3>
  11571. <p>
  11572. (<em>Appears on:</em>
  11573. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11574. </p>
  11575. <p>
  11576. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  11577. </p>
  11578. <table>
  11579. <thead>
  11580. <tr>
  11581. <th>Field</th>
  11582. <th>Description</th>
  11583. </tr>
  11584. </thead>
  11585. <tbody>
  11586. <tr>
  11587. <td>
  11588. <code>apiEndpoint</code></br>
  11589. <em>
  11590. string
  11591. </em>
  11592. </td>
  11593. <td>
  11594. <em>(Optional)</em>
  11595. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11596. </td>
  11597. </tr>
  11598. <tr>
  11599. <td>
  11600. <code>auth</code></br>
  11601. <em>
  11602. <a href="#external-secrets.io/v1.YandexLockboxAuth">
  11603. YandexLockboxAuth
  11604. </a>
  11605. </em>
  11606. </td>
  11607. <td>
  11608. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  11609. </td>
  11610. </tr>
  11611. <tr>
  11612. <td>
  11613. <code>caProvider</code></br>
  11614. <em>
  11615. <a href="#external-secrets.io/v1.YandexLockboxCAProvider">
  11616. YandexLockboxCAProvider
  11617. </a>
  11618. </em>
  11619. </td>
  11620. <td>
  11621. <em>(Optional)</em>
  11622. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11623. </td>
  11624. </tr>
  11625. </tbody>
  11626. </table>
  11627. <hr/>
  11628. <p><em>
  11629. Generated with <code>gen-crd-api-reference-docs</code>.
  11630. </em></p>
  11631. </article>
  11632. </div>
  11633. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  11634. </div>
  11635. </main>
  11636. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  11637. <footer class="md-footer">
  11638. <div class="md-footer-meta md-typeset">
  11639. <div class="md-footer-meta__inner md-grid">
  11640. <div class="md-copyright">
  11641. <div class="md-copyright__highlight">
  11642. &copy; 2025 The external-secrets Authors.<br/>
  11643. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  11644. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  11645. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  11646. </div>
  11647. Made with
  11648. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  11649. Material for MkDocs
  11650. </a>
  11651. </div>
  11652. </div>
  11653. </div>
  11654. </footer>
  11655. </div>
  11656. <div class="md-dialog" data-md-component="dialog">
  11657. <div class="md-dialog__inner md-typeset"></div>
  11658. </div>
  11659. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  11660. <script src="../../assets/javascripts/bundle.13a4f30d.min.js"></script>
  11661. </body>
  11662. </html>